From eecd5d71c24af8a57ca9603b92c7bd794f431cda Mon Sep 17 00:00:00 2001 From: David Milligan Date: Wed, 4 Sep 2024 16:15:54 +0100 Subject: [PATCH 01/21] intergating with latest dev build of worker-framework --- pom.xml | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/pom.xml b/pom.xml index 7a9df99..5ddd791 100644 --- a/pom.xml +++ b/pom.xml @@ -285,52 +285,52 @@ com.github.workerframework standard-worker-container pom - 8.1.0-1251 + 8.2.0-US922349-SNAPSHOT com.github.workerframework util-rabbitmq - 8.1.0-1251 + 8.2.0-US922349-SNAPSHOT com.github.workerframework worker-api - 8.1.0-1251 + 8.2.0-US922349-SNAPSHOT com.github.workerframework worker-configs - 8.1.0-1251 + 8.2.0-US922349-SNAPSHOT com.github.workerframework worker-core - 8.1.0-1251 + 8.2.0-US922349-SNAPSHOT com.github.workerframework worker-default-configs - 8.1.0-1251 + 8.2.0-US922349-SNAPSHOT com.github.workerframework worker-queue-rabbit - 8.1.0-1251 + 8.2.0-US922349-SNAPSHOT com.github.workerframework worker-store-fs - 8.1.0-1251 + 8.2.0-US922349-SNAPSHOT com.github.workerframework worker-store-http - 8.1.0-1251 + 8.2.0-US922349-SNAPSHOT com.github.workerframework worker-tracking-report - 8.1.0-1251 + 8.2.0-US922349-SNAPSHOT com.github.workerframework.testing @@ -925,6 +925,10 @@ ${dockerHubPublic}/library/rabbitmq 3-management + + ${dockerHubPublic}/localstack/localstack + latest + From 7d1f42a5be003ffc4b5e79be99536d30a53d6ed2 Mon Sep 17 00:00:00 2001 From: David Milligan Date: Wed, 4 Sep 2024 16:57:27 +0100 Subject: [PATCH 02/21] cfg update --- ...fg~test~worker-languagedetection~MessageSystemConfiguration | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration new file mode 100644 index 0000000..12dfd90 --- /dev/null +++ b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration @@ -0,0 +1,3 @@ +({ + implementation: "rabbitmq" +}); From 65632581307ec780b68a1ab32f48c3e2ba88c5f7 Mon Sep 17 00:00:00 2001 From: David Milligan Date: Thu, 5 Sep 2024 18:19:51 +0100 Subject: [PATCH 03/21] Added MessageSystemConfiguration --- ...test~worker-languagedetection~MessageSystemConfiguration | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration index 12dfd90..8bdc356 100644 --- a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration +++ b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration @@ -1,3 +1,3 @@ -({ - implementation: "rabbitmq" -}); +{ + "implementation": "rabbitmq" +} From c69fcad9e3b1bee22699b92a5a5e92a435163531 Mon Sep 17 00:00:00 2001 From: David Milligan Date: Fri, 6 Sep 2024 09:25:06 +0100 Subject: [PATCH 04/21] Added cfg --- pom.xml | 5 ++ worker-languagedetection-container/pom.xml | 50 ++++++++++++++----- ...nguagedetection~MessageSystemConfiguration | 2 +- ...~worker-languagedetection~SQSConfiguration | 8 +++ ...guagedetection~SQSWorkerQueueConfiguration | 10 ++++ 5 files changed, 61 insertions(+), 14 deletions(-) create mode 100644 worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration create mode 100644 worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration diff --git a/pom.xml b/pom.xml index 5ddd791..1200dd2 100644 --- a/pom.xml +++ b/pom.xml @@ -317,6 +317,11 @@ worker-queue-rabbit 8.2.0-US922349-SNAPSHOT + + com.github.workerframework + worker-queue-sqs + 8.2.0-US922349-SNAPSHOT + com.github.workerframework worker-store-fs diff --git a/worker-languagedetection-container/pom.xml b/worker-languagedetection-container/pom.xml index 2d535b2..8103f14 100644 --- a/worker-languagedetection-container/pom.xml +++ b/worker-languagedetection-container/pom.xml @@ -168,6 +168,12 @@ ${test.configs} \\${docker.host.address}@${webdav.apache.port}\webdav http://${docker.host.address}:${webdav.apache.port}/webdav + + + ${projectDockerRegistry}/localstack/localstack:latest + localstack/localstack + true + @@ -252,22 +258,40 @@ + + + + + + + + + + + + + + + + + + + + + + + - rabbitmq - ${projectDockerRegistry}/library/rabbitmq + sqs + ${projectDockerRegistry}/localstack/localstack - ${rabbitmq.ctrl.port}:15672 - ${rabbitmq.node.port}:5672 + 14566:4566 - - Server startup complete - - http://${docker.host.address}:${rabbitmq.ctrl.port} - - - 500 - + + + warn + true @@ -369,7 +393,7 @@ - rabbitmq + sqs true diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration index 8bdc356..683b0f6 100644 --- a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration +++ b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration @@ -1,3 +1,3 @@ { - "implementation": "rabbitmq" + "implementation": "sqs" } diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration new file mode 100644 index 0000000..2bd3213 --- /dev/null +++ b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration @@ -0,0 +1,8 @@ +{ + "awsProtocol": "http", + "awsHost": "sqs.us-east-1.localhost.localstack.cloud", + "awsPort": 14566, + "awsRegion": "us-east-1", + "awsAccessKey": "x", + "awsSecretAccessKey": "x" +} diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration new file mode 100644 index 0000000..8b3553a --- /dev/null +++ b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration @@ -0,0 +1,10 @@ +{ + "inputQueue": "LanguageDetectionWorker-input-1", + "retryQueue": "LanguageDetectionWorker-input-1", + "pausedQueue": "LanguageDetectionWorker-paused-1", + "longPollInterval": 20, + "maxNumberOfMessages": 1, + "visibilityTimeout": 300, + "messageRetentionPeriod": 1000, + "maxDeliveries": 1000 +} From 4d53324c192fd627945cb5b8a76808240090c3e4 Mon Sep 17 00:00:00 2001 From: David Milligan Date: Fri, 6 Sep 2024 14:28:39 +0100 Subject: [PATCH 05/21] Corrected cfg --- .../cfg~caf~worker~SQSConfiguration.js | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 worker-languagedetection-container/target/config-files/cfg~caf~worker~SQSConfiguration.js diff --git a/worker-languagedetection-container/target/config-files/cfg~caf~worker~SQSConfiguration.js b/worker-languagedetection-container/target/config-files/cfg~caf~worker~SQSConfiguration.js new file mode 100644 index 0000000..c417511 --- /dev/null +++ b/worker-languagedetection-container/target/config-files/cfg~caf~worker~SQSConfiguration.js @@ -0,0 +1,23 @@ +/* + * Copyright 2015-2024 Open Text. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +({ + awsProtocol: getenv("CAF_AWS_PROTOCOL") || "http", + awsHost: getenv("CAF_AWS_HOST") || "localhost", + awsPort: getenv("CAF_AWS_PORT") || 4566, + awsRegion: getenv("CAF_AWS_REGION") || "us-east-1", + awsAccessKey: getenv("CAF_AWS_ACCESS_KEY") || "x", + secretAccessKey: getenv("CAF_AWS_SECRET_ACCESS_KEY") || "x" +}); From e6d92a31230bf012623054f71dfac16c90b722a6 Mon Sep 17 00:00:00 2001 From: David Milligan Date: Fri, 6 Sep 2024 14:30:01 +0100 Subject: [PATCH 06/21] Corrected cfg --- .../cfg~test~worker-languagedetection~SQSConfiguration | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration index 2bd3213..5311ef2 100644 --- a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration +++ b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration @@ -4,5 +4,5 @@ "awsPort": 14566, "awsRegion": "us-east-1", "awsAccessKey": "x", - "awsSecretAccessKey": "x" + "secretAccessKey": "x" } From c221e00f78821ddafbe3d74e1aa90e0b42ea1140 Mon Sep 17 00:00:00 2001 From: David Milligan Date: Fri, 6 Sep 2024 15:20:52 +0100 Subject: [PATCH 07/21] Updated cfg --- .../target/config-files/cfg~caf~worker~SQSConfiguration.js | 2 +- .../cfg~test~worker-languagedetection~SQSConfiguration | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/worker-languagedetection-container/target/config-files/cfg~caf~worker~SQSConfiguration.js b/worker-languagedetection-container/target/config-files/cfg~caf~worker~SQSConfiguration.js index c417511..df10d15 100644 --- a/worker-languagedetection-container/target/config-files/cfg~caf~worker~SQSConfiguration.js +++ b/worker-languagedetection-container/target/config-files/cfg~caf~worker~SQSConfiguration.js @@ -19,5 +19,5 @@ awsPort: getenv("CAF_AWS_PORT") || 4566, awsRegion: getenv("CAF_AWS_REGION") || "us-east-1", awsAccessKey: getenv("CAF_AWS_ACCESS_KEY") || "x", - secretAccessKey: getenv("CAF_AWS_SECRET_ACCESS_KEY") || "x" + awsSecretAccessKey: getenv("CAF_AWS_SECRET_ACCESS_KEY") || "x" }); diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration index 5311ef2..2bd3213 100644 --- a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration +++ b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration @@ -4,5 +4,5 @@ "awsPort": 14566, "awsRegion": "us-east-1", "awsAccessKey": "x", - "secretAccessKey": "x" + "awsSecretAccessKey": "x" } From 35340f51e84ac8bab41100cbfd114764c10f8ab5 Mon Sep 17 00:00:00 2001 From: David Milligan Date: Mon, 9 Sep 2024 15:12:37 +0100 Subject: [PATCH 08/21] Updated cfg --- pom.xml | 23 ++++++++++--------- worker-languagedetection-container/pom.xml | 11 ++++----- ...guagedetection~SQSWorkerQueueConfiguration | 1 + 3 files changed, 18 insertions(+), 17 deletions(-) diff --git a/pom.xml b/pom.xml index 1200dd2..2e5b566 100644 --- a/pom.xml +++ b/pom.xml @@ -62,6 +62,7 @@ ${dockerImagePrefix}${dockerHubOrganization}${dockerOrgSeperator} ${dockerVersionSeperator}${project.version} worker-languagedetection-${project.version}.project-registries.local + 8.2.0-US922349-SNAPSHOT @@ -285,57 +286,57 @@ com.github.workerframework standard-worker-container pom - 8.2.0-US922349-SNAPSHOT + ${worker.framework.version} com.github.workerframework util-rabbitmq - 8.2.0-US922349-SNAPSHOT + ${worker.framework.version} com.github.workerframework worker-api - 8.2.0-US922349-SNAPSHOT + ${worker.framework.version} com.github.workerframework worker-configs - 8.2.0-US922349-SNAPSHOT + ${worker.framework.version} com.github.workerframework worker-core - 8.2.0-US922349-SNAPSHOT + ${worker.framework.version} com.github.workerframework worker-default-configs - 8.2.0-US922349-SNAPSHOT + ${worker.framework.version} com.github.workerframework worker-queue-rabbit - 8.2.0-US922349-SNAPSHOT + ${worker.framework.version} com.github.workerframework worker-queue-sqs - 8.2.0-US922349-SNAPSHOT + ${worker.framework.version} com.github.workerframework worker-store-fs - 8.2.0-US922349-SNAPSHOT + ${worker.framework.version} com.github.workerframework worker-store-http - 8.2.0-US922349-SNAPSHOT + ${worker.framework.version} com.github.workerframework worker-tracking-report - 8.2.0-US922349-SNAPSHOT + ${worker.framework.version} com.github.workerframework.testing diff --git a/worker-languagedetection-container/pom.xml b/worker-languagedetection-container/pom.xml index 8103f14..0e54158 100644 --- a/worker-languagedetection-container/pom.xml +++ b/worker-languagedetection-container/pom.xml @@ -168,12 +168,6 @@ ${test.configs} \\${docker.host.address}@${webdav.apache.port}\webdav http://${docker.host.address}:${webdav.apache.port}/webdav - - - ${projectDockerRegistry}/localstack/localstack:latest - localstack/localstack - true - @@ -292,6 +286,11 @@ warn + + Ready. + + 500 + true diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration index 8b3553a..0fb60c7 100644 --- a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration +++ b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration @@ -2,6 +2,7 @@ "inputQueue": "LanguageDetectionWorker-input-1", "retryQueue": "LanguageDetectionWorker-input-1", "pausedQueue": "LanguageDetectionWorker-paused-1", + "rejectedQueue": "worker-rejected", "longPollInterval": 20, "maxNumberOfMessages": 1, "visibilityTimeout": 300, From 77bf1ac5cc91a798f1394ed91199f9cbe29647a0 Mon Sep 17 00:00:00 2001 From: David Milligan Date: Wed, 11 Sep 2024 16:15:47 +0100 Subject: [PATCH 09/21] Updated cfg --- worker-languagedetection-container/pom.xml | 4 ++-- .../cfg~test~worker-languagedetection~SQSConfiguration | 4 ++-- ...~test~worker-languagedetection~SQSWorkerQueueConfiguration | 3 ++- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/worker-languagedetection-container/pom.xml b/worker-languagedetection-container/pom.xml index 0e54158..4085b90 100644 --- a/worker-languagedetection-container/pom.xml +++ b/worker-languagedetection-container/pom.xml @@ -276,7 +276,7 @@ - sqs + localstack ${projectDockerRegistry}/localstack/localstack @@ -392,7 +392,7 @@ - sqs + localstack true diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration index 2bd3213..e17b70e 100644 --- a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration +++ b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration @@ -1,7 +1,7 @@ { "awsProtocol": "http", - "awsHost": "sqs.us-east-1.localhost.localstack.cloud", - "awsPort": 14566, + "awsHost": "localstack", + "awsPort": 4566, "awsRegion": "us-east-1", "awsAccessKey": "x", "awsSecretAccessKey": "x" diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration index 0fb60c7..794cbe2 100644 --- a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration +++ b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration @@ -7,5 +7,6 @@ "maxNumberOfMessages": 1, "visibilityTimeout": 300, "messageRetentionPeriod": 1000, - "maxDeliveries": 1000 + "maxDeliveries": 1000, + "maxInflightMessages": 120000 } From 33590f6fd9948cbfdb7ef85e193926e58ac48e26 Mon Sep 17 00:00:00 2001 From: David Milligan Date: Fri, 13 Sep 2024 16:10:24 +0100 Subject: [PATCH 10/21] Update to allow sqs testing --- build.log | 29751 ++++++++++++++++ pom.xml | 5 +- worker-languagedetection-container/pom.xml | 111 +- ...nguagedetection~MessageSystemConfiguration | 2 +- ...~worker-languagedetection~SQSConfiguration | 2 +- 5 files changed, 29833 insertions(+), 38 deletions(-) create mode 100644 build.log diff --git a/build.log b/build.log new file mode 100644 index 0000000..8dbfaf6 --- /dev/null +++ b/build.log @@ -0,0 +1,29751 @@ +[INFO] Scanning for projects... +[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] +[INFO] Inspecting build with total of 1 modules... +[INFO] Installing Nexus Staging features: +[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin +[INFO] +[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- +[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT +[INFO] from pom.xml +[INFO] --------------------------------[ pom ]--------------------------------- +[INFO] +[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] +[INFO] +[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- +[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target +[INFO] +[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- +[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed +[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed +[INFO] +[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- +[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true +[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container +[INFO] Git info extracted in 273ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' +[INFO] +[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- +[INFO] Using plugin classloader, includes GMavenPlus and project classpath. +[INFO] Using Groovy 3.0.19 to perform execute. +[INFO] +[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- +[INFO] Updating license headers... +[INFO] +[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- +[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar +[INFO] +[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- +[INFO] Copying 2 resources from src/main/config to target/config-files +[INFO] +[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- +[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox +[INFO] DOCKER> +[INFO] DOCKER> ---> 6fd955f66c23 +[INFO] DOCKER> Step 2/4 : COPY maven /config/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> a2fc7b236f6a +[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 812e68848b67 +[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 4a9eb07106d2 +[INFO] DOCKER> Successfully built 4a9eb07106d2 +[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:4a9eb +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Created docker-build.tar in 1 minute and 13 seconds +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 +[INFO] DOCKER> +[INFO] DOCKER> ---> 0f51baaf46f5 +[INFO] DOCKER> Step 2/4 : COPY maven /maven/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 91e7f56ef8cf +[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 002fc83963fa +[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 2adee4e4f048 +[INFO] DOCKER> Successfully built 2adee4e4f048 +[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Built image sha256:2adee +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/sqs-worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/sqs-worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Created docker-build.tar in 1 minute and 6 seconds +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 +[INFO] DOCKER> +[INFO] DOCKER> ---> 0f51baaf46f5 +[INFO] DOCKER> Step 2/4 : COPY maven /maven/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 91e7f56ef8cf +[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 002fc83963fa +[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 2adee4e4f048 +[INFO] DOCKER> Successfully built 2adee4e4f048 +[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Built image sha256:2adee +[INFO] +[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- +[INFO] Changes detected - recompiling the module! :source +[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes +[INFO] +[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- +[INFO] +[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- +[INFO] Not executing Javadoc as the project is not a Java classpath-capable package +[INFO] +[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container a08457f6b776 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. +14:02:44.856 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf +14:02:44.858 webdav> + getent passwd 33 +14:02:44.858 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin +14:02:44.858 webdav> + useradd -r webdav -u 33 -g 33 +14:02:44.892 webdav> useradd: UID 33 is not unique +14:02:44.892 webdav> + mkdir -p /srv/common/webdav +14:02:44.892 webdav> + chown 33 /srv/common/webdav +14:02:44.892 webdav> + trap _term SIGTERM +14:02:44.892 webdav> + pid=12 +14:02:44.892 webdav> + wait 12 +14:02:44.892 webdav> + /usr/sbin/apache2 -D FOREGROUND +14:02:44.901 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +14:02:44.905 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +14:02:44.907 webdav> [Fri Sep 13 14:02:44.907363 2024] [mpm_event:notice] [pid 12:tid 139911249037184] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations +14:02:44.907 webdav> [Fri Sep 13 14:02:44.907704 2024] [core:notice] [pid 12:tid 139911249037184] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' +14:02:44.993 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:14:02:44 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 105 ms +[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Start container d5371c7ce138 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waiting on url http://localhost:15672 with method HEAD for status 200..399. +14:02:48.632 rabbitmq> 2024-09-13 14:02:48.625920+00:00 [notice] <0.44.0> Application syslog exited with reason: stopped +14:02:48.632 rabbitmq> 2024-09-13 14:02:48.631667+00:00 [notice] <0.254.0> Logging: switching to configured handler(s); following messages may not be visible in this log output +14:02:48.632 rabbitmq> 2024-09-13 14:02:48.632249+00:00 [notice] <0.254.0> Logging: configured log handlers are now ACTIVE +14:02:48.642 rabbitmq> 2024-09-13 14:02:48.641902+00:00 [info] <0.254.0> ra: starting system quorum_queues +14:02:48.642 rabbitmq> 2024-09-13 14:02:48.641967+00:00 [info] <0.254.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/quorum/rabbit@d5371c7ce138 +14:02:48.709 rabbitmq> 2024-09-13 14:02:48.708779+00:00 [info] <0.268.0> ra system 'quorum_queues' running pre init for 0 registered servers +14:02:48.721 rabbitmq> 2024-09-13 14:02:48.721304+00:00 [info] <0.269.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered +14:02:48.737 rabbitmq> 2024-09-13 14:02:48.736561+00:00 [notice] <0.274.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables +14:02:48.771 rabbitmq> 2024-09-13 14:02:48.771633+00:00 [info] <0.254.0> ra: starting system coordination +14:02:48.771 rabbitmq> 2024-09-13 14:02:48.771689+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/coordination/rabbit@d5371c7ce138 +14:02:48.773 rabbitmq> 2024-09-13 14:02:48.773518+00:00 [info] <0.282.0> ra system 'coordination' running pre init for 0 registered servers +14:02:48.776 rabbitmq> 2024-09-13 14:02:48.775637+00:00 [info] <0.283.0> ra: meta data store initialised for system coordination. 0 record(s) recovered +14:02:48.776 rabbitmq> 2024-09-13 14:02:48.775876+00:00 [notice] <0.288.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables +14:02:48.784 rabbitmq> 2024-09-13 14:02:48.784102+00:00 [info] <0.254.0> ra: starting system coordination +14:02:48.784 rabbitmq> 2024-09-13 14:02:48.784161+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/coordination/rabbit@d5371c7ce138 +14:02:48.895 rabbitmq> 2024-09-13 14:02:48.895113+00:00 [info] <0.254.0> Waiting for Khepri leader for 30000 ms, 9 retries left +14:02:48.911 rabbitmq> 2024-09-13 14:02:48.911275+00:00 [notice] <0.292.0> RabbitMQ metadata store: candidate -> leader in term: 1 machine version: 1 +14:02:48.918 rabbitmq> 2024-09-13 14:02:48.918256+00:00 [info] <0.254.0> Khepri leader elected +14:02:48.918 rabbitmq> 2024-09-13 14:02:48.918314+00:00 [info] <0.254.0> Waiting for Khepri projections for 30000 ms, 9 retries left +14:02:49.266 rabbitmq> 2024-09-13 14:02:49.265952+00:00 [info] <0.254.0> +14:02:49.266 rabbitmq> 2024-09-13 14:02:49.265952+00:00 [info] <0.254.0> Starting RabbitMQ 3.13.7 on Erlang 26.2.5.3 [jit] +14:02:49.266 rabbitmq> 2024-09-13 14:02:49.265952+00:00 [info] <0.254.0> Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries +14:02:49.266 rabbitmq> 2024-09-13 14:02:49.265952+00:00 [info] <0.254.0> Licensed under the MPL 2.0. Website: https://rabbitmq.com +14:02:49.267 rabbitmq> +14:02:49.267 rabbitmq> ## ## RabbitMQ 3.13.7 +14:02:49.267 rabbitmq> ## ## +14:02:49.267 rabbitmq> ########## Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries +14:02:49.267 rabbitmq> ###### ## +14:02:49.267 rabbitmq> ########## Licensed under the MPL 2.0. Website: https://rabbitmq.com +14:02:49.267 rabbitmq> +14:02:49.267 rabbitmq> Erlang: 26.2.5.3 [jit] +14:02:49.267 rabbitmq> TLS Library: OpenSSL - OpenSSL 3.1.7 3 Sep 2024 +14:02:49.267 rabbitmq> Release series support status: see https://www.rabbitmq.com/release-information +14:02:49.267 rabbitmq> +14:02:49.267 rabbitmq> Doc guides: https://www.rabbitmq.com/docs +14:02:49.267 rabbitmq> Support: https://www.rabbitmq.com/docs/contact +14:02:49.267 rabbitmq> Tutorials: https://www.rabbitmq.com/tutorials +14:02:49.267 rabbitmq> Monitoring: https://www.rabbitmq.com/docs/monitoring +14:02:49.267 rabbitmq> Upgrading: https://www.rabbitmq.com/docs/upgrade +14:02:49.267 rabbitmq> +14:02:49.267 rabbitmq> Logs: +14:02:49.267 rabbitmq> +14:02:49.267 rabbitmq> Config file(s): /etc/rabbitmq/conf.d/10-defaults.conf +14:02:49.267 rabbitmq> +14:02:49.267 rabbitmq> Starting broker...2024-09-13 14:02:49.267797+00:00 [info] <0.254.0> +14:02:49.267 rabbitmq> 2024-09-13 14:02:49.267797+00:00 [info] <0.254.0> node : rabbit@d5371c7ce138 +14:02:49.268 rabbitmq> 2024-09-13 14:02:49.267797+00:00 [info] <0.254.0> home dir : /var/lib/rabbitmq +14:02:49.268 rabbitmq> 2024-09-13 14:02:49.267797+00:00 [info] <0.254.0> config file(s) : /etc/rabbitmq/conf.d/10-defaults.conf +14:02:49.268 rabbitmq> 2024-09-13 14:02:49.267797+00:00 [info] <0.254.0> cookie hash : JALPYMNFIK+qPbuJwfQWzA== +14:02:49.268 rabbitmq> 2024-09-13 14:02:49.267797+00:00 [info] <0.254.0> log(s) : +14:02:49.268 rabbitmq> 2024-09-13 14:02:49.267797+00:00 [info] <0.254.0> data dir : /var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138 +14:02:49.601 rabbitmq> 2024-09-13 14:02:49.600823+00:00 [info] <0.254.0> Running boot step pre_boot defined by app rabbit +14:02:49.601 rabbitmq> 2024-09-13 14:02:49.600900+00:00 [info] <0.254.0> Running boot step rabbit_global_counters defined by app rabbit +14:02:49.601 rabbitmq> 2024-09-13 14:02:49.601221+00:00 [info] <0.254.0> Running boot step rabbit_osiris_metrics defined by app rabbit +14:02:49.602 rabbitmq> 2024-09-13 14:02:49.601312+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics defined by app rabbit +14:02:49.602 rabbitmq> 2024-09-13 14:02:49.601561+00:00 [info] <0.254.0> Running boot step rabbit_alarm defined by app rabbit +14:02:49.613 rabbitmq> 2024-09-13 14:02:49.612860+00:00 [info] <0.329.0> Memory high watermark set to 6399 MiB (6710412902 bytes) of 15998 MiB (16776032256 bytes) total +14:02:49.616 rabbitmq> 2024-09-13 14:02:49.616129+00:00 [info] <0.331.0> Enabling free disk space monitoring (disk free space: 970246447104, total memory: 16776032256) +14:02:49.617 rabbitmq> 2024-09-13 14:02:49.616228+00:00 [info] <0.331.0> Disk free limit set to 50MB +14:02:49.618 rabbitmq> 2024-09-13 14:02:49.618643+00:00 [info] <0.254.0> Running boot step code_server_cache defined by app rabbit +14:02:49.619 rabbitmq> 2024-09-13 14:02:49.618759+00:00 [info] <0.254.0> Running boot step file_handle_cache defined by app rabbit +14:02:49.626 rabbitmq> 2024-09-13 14:02:49.626454+00:00 [info] <0.334.0> Limiting to approx 1048479 file handles (943629 sockets) +14:02:49.626 rabbitmq> 2024-09-13 14:02:49.626593+00:00 [info] <0.335.0> FHC read buffering: OFF +14:02:49.626 rabbitmq> 2024-09-13 14:02:49.626634+00:00 [info] <0.335.0> FHC write buffering: ON +14:02:49.627 rabbitmq> 2024-09-13 14:02:49.626952+00:00 [info] <0.254.0> Running boot step worker_pool defined by app rabbit +14:02:49.627 rabbitmq> 2024-09-13 14:02:49.627065+00:00 [info] <0.315.0> Will use 4 processes for default worker pool +14:02:49.627 rabbitmq> 2024-09-13 14:02:49.627104+00:00 [info] <0.315.0> Starting worker pool 'worker_pool' with 4 processes in it +14:02:49.628 rabbitmq> 2024-09-13 14:02:49.627394+00:00 [info] <0.254.0> Running boot step database defined by app rabbit +14:02:49.628 rabbitmq> 2024-09-13 14:02:49.627802+00:00 [info] <0.254.0> Peer discovery: configured backend: rabbit_peer_discovery_classic_config +14:02:49.630 rabbitmq> 2024-09-13 14:02:49.629855+00:00 [notice] <0.316.0> Feature flags: attempt to enable `detailed_queues_endpoint`... +14:02:49.700 rabbitmq> 2024-09-13 14:02:49.699682+00:00 [notice] <0.316.0> Feature flags: `detailed_queues_endpoint` enabled +14:02:49.700 rabbitmq> 2024-09-13 14:02:49.699789+00:00 [notice] <0.316.0> Feature flags: attempt to enable `quorum_queue_non_voters`... +14:02:49.770 rabbitmq> 2024-09-13 14:02:49.770024+00:00 [notice] <0.316.0> Feature flags: `quorum_queue_non_voters` enabled +14:02:49.770 rabbitmq> 2024-09-13 14:02:49.770208+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_update_config_command`... +14:02:49.843 rabbitmq> 2024-09-13 14:02:49.843042+00:00 [notice] <0.316.0> Feature flags: `stream_update_config_command` enabled +14:02:49.843 rabbitmq> 2024-09-13 14:02:49.843214+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_filtering`... +14:02:49.914 rabbitmq> 2024-09-13 14:02:49.914093+00:00 [notice] <0.316.0> Feature flags: `stream_filtering` enabled +14:02:49.915 rabbitmq> 2024-09-13 14:02:49.914231+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_sac_coordinator_unblock_group`... +14:02:49.987 rabbitmq> 2024-09-13 14:02:49.986822+00:00 [notice] <0.316.0> Feature flags: `stream_sac_coordinator_unblock_group` enabled +14:02:49.988 rabbitmq> 2024-09-13 14:02:49.986966+00:00 [notice] <0.316.0> Feature flags: attempt to enable `restart_streams`... +14:02:50.057 rabbitmq> 2024-09-13 14:02:50.057326+00:00 [notice] <0.316.0> Feature flags: `restart_streams` enabled +14:02:50.057 rabbitmq> 2024-09-13 14:02:50.057501+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers`... +14:02:50.129 rabbitmq> 2024-09-13 14:02:50.129072+00:00 [notice] <0.316.0> Feature flags: `message_containers` enabled +14:02:50.129 rabbitmq> 2024-09-13 14:02:50.129200+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers_deaths_v2`... +14:02:50.201 rabbitmq> 2024-09-13 14:02:50.201095+00:00 [notice] <0.316.0> Feature flags: `message_containers_deaths_v2` enabled +14:02:50.201 rabbitmq> 2024-09-13 14:02:50.201346+00:00 [info] <0.254.0> DB: virgin node -> run peer discovery +14:02:50.201 rabbitmq> 2024-09-13 14:02:50.201404+00:00 [warning] <0.254.0> Classic peer discovery backend: list of nodes does not contain the local node [] +14:02:50.213 rabbitmq> 2024-09-13 14:02:50.212701+00:00 [notice] <0.44.0> Application mnesia exited with reason: stopped +14:02:50.514 rabbitmq> 2024-09-13 14:02:50.514148+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +14:02:50.515 rabbitmq> 2024-09-13 14:02:50.514436+00:00 [info] <0.254.0> Successfully synced tables from a peer +14:02:50.515 rabbitmq> 2024-09-13 14:02:50.514643+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +14:02:50.516 rabbitmq> 2024-09-13 14:02:50.514776+00:00 [info] <0.254.0> Successfully synced tables from a peer +14:02:50.539 rabbitmq> 2024-09-13 14:02:50.538710+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +14:02:50.539 rabbitmq> 2024-09-13 14:02:50.538897+00:00 [info] <0.254.0> Successfully synced tables from a peer +14:02:50.539 rabbitmq> 2024-09-13 14:02:50.539113+00:00 [info] <0.254.0> Running boot step tracking_metadata_store defined by app rabbit +14:02:50.540 rabbitmq> 2024-09-13 14:02:50.539187+00:00 [info] <0.558.0> Setting up a table for connection tracking on this node: tracked_connection +14:02:50.540 rabbitmq> 2024-09-13 14:02:50.539229+00:00 [info] <0.558.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost +14:02:50.541 rabbitmq> 2024-09-13 14:02:50.539283+00:00 [info] <0.558.0> Setting up a table for per-user connection counting on this node: tracked_connection_per_user +14:02:50.541 rabbitmq> 2024-09-13 14:02:50.539317+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel +14:02:50.541 rabbitmq> 2024-09-13 14:02:50.539349+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel_per_user +14:02:50.543 rabbitmq> 2024-09-13 14:02:50.539387+00:00 [info] <0.254.0> Running boot step networking_metadata_store defined by app rabbit +14:02:50.543 rabbitmq> 2024-09-13 14:02:50.539455+00:00 [info] <0.254.0> Running boot step feature_flags defined by app rabbit +14:02:50.544 rabbitmq> 2024-09-13 14:02:50.539622+00:00 [info] <0.254.0> Running boot step codec_correctness_check defined by app rabbit +14:02:50.544 rabbitmq> 2024-09-13 14:02:50.539691+00:00 [info] <0.254.0> Running boot step external_infrastructure defined by app rabbit +14:02:50.544 rabbitmq> 2024-09-13 14:02:50.539812+00:00 [info] <0.254.0> Running boot step rabbit_event defined by app rabbit +14:02:50.544 rabbitmq> 2024-09-13 14:02:50.540111+00:00 [info] <0.254.0> Running boot step rabbit_registry defined by app rabbit +14:02:50.544 rabbitmq> 2024-09-13 14:02:50.540237+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit +14:02:50.544 rabbitmq> 2024-09-13 14:02:50.540384+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit +14:02:50.544 rabbitmq> 2024-09-13 14:02:50.540580+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit +14:02:50.544 rabbitmq> 2024-09-13 14:02:50.540782+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_direct defined by app rabbit +14:02:50.544 rabbitmq> 2024-09-13 14:02:50.540848+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit +14:02:50.544 rabbitmq> 2024-09-13 14:02:50.540922+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_headers defined by app rabbit +14:02:50.545 rabbitmq> 2024-09-13 14:02:50.540965+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_topic defined by app rabbit +14:02:50.545 rabbitmq> 2024-09-13 14:02:50.541060+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit +14:02:50.545 rabbitmq> 2024-09-13 14:02:50.541189+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit +14:02:50.545 rabbitmq> 2024-09-13 14:02:50.541264+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit +14:02:50.545 rabbitmq> 2024-09-13 14:02:50.541302+00:00 [info] <0.254.0> Running boot step rabbit_priority_queue defined by app rabbit +14:02:50.546 rabbitmq> 2024-09-13 14:02:50.541337+00:00 [info] <0.254.0> Priority queues enabled, real BQ is rabbit_variable_queue +14:02:50.546 rabbitmq> 2024-09-13 14:02:50.543281+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_client_local defined by app rabbit +14:02:50.546 rabbitmq> 2024-09-13 14:02:50.543452+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit +14:02:50.546 rabbitmq> 2024-09-13 14:02:50.543542+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_random defined by app rabbit +14:02:50.546 rabbitmq> 2024-09-13 14:02:50.543735+00:00 [info] <0.254.0> Running boot step kernel_ready defined by app rabbit +14:02:50.546 rabbitmq> 2024-09-13 14:02:50.543763+00:00 [info] <0.254.0> Running boot step rabbit_sysmon_minder defined by app rabbit +14:02:50.546 rabbitmq> 2024-09-13 14:02:50.544027+00:00 [info] <0.254.0> Running boot step rabbit_epmd_monitor defined by app rabbit +14:02:50.550 rabbitmq> 2024-09-13 14:02:50.550137+00:00 [info] <0.566.0> epmd monitor knows us, inter-node communication (distribution) port: 25672 +14:02:50.550 rabbitmq> 2024-09-13 14:02:50.550271+00:00 [info] <0.254.0> Running boot step guid_generator defined by app rabbit +14:02:50.558 rabbitmq> 2024-09-13 14:02:50.558603+00:00 [info] <0.254.0> Running boot step rabbit_node_monitor defined by app rabbit +14:02:50.559 rabbitmq> 2024-09-13 14:02:50.558894+00:00 [info] <0.570.0> Starting rabbit_node_monitor (in ignore mode) +14:02:50.559 rabbitmq> 2024-09-13 14:02:50.559014+00:00 [info] <0.254.0> Running boot step delegate_sup defined by app rabbit +14:02:50.559 rabbitmq> 2024-09-13 14:02:50.559346+00:00 [info] <0.254.0> Running boot step rabbit_memory_monitor defined by app rabbit +14:02:50.559 rabbitmq> 2024-09-13 14:02:50.559457+00:00 [info] <0.254.0> Running boot step rabbit_fifo_dlx_sup defined by app rabbit +14:02:50.560 rabbitmq> 2024-09-13 14:02:50.559506+00:00 [info] <0.254.0> Running boot step core_initialized defined by app rabbit +14:02:50.560 rabbitmq> 2024-09-13 14:02:50.559527+00:00 [info] <0.254.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit +14:02:50.560 rabbitmq> 2024-09-13 14:02:50.559594+00:00 [info] <0.254.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit +14:02:50.560 rabbitmq> 2024-09-13 14:02:50.559624+00:00 [info] <0.254.0> Running boot step rabbit_definitions_hashing defined by app rabbit +14:02:50.560 rabbitmq> 2024-09-13 14:02:50.559775+00:00 [info] <0.254.0> Running boot step rabbit_exchange_parameters defined by app rabbit +14:02:50.598 rabbitmq> 2024-09-13 14:02:50.597846+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit +14:02:50.598 rabbitmq> 2024-09-13 14:02:50.598365+00:00 [info] <0.254.0> Running boot step rabbit_policies defined by app rabbit +14:02:50.598 rabbitmq> 2024-09-13 14:02:50.598686+00:00 [info] <0.254.0> Running boot step rabbit_policy defined by app rabbit +14:02:50.599 rabbitmq> 2024-09-13 14:02:50.598728+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_validator defined by app rabbit +14:02:50.599 rabbitmq> 2024-09-13 14:02:50.598962+00:00 [info] <0.254.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit +14:02:50.599 rabbitmq> 2024-09-13 14:02:50.599090+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue defined by app rabbit +14:02:50.599 rabbitmq> 2024-09-13 14:02:50.599235+00:00 [info] <0.254.0> Running boot step rabbit_stream_coordinator defined by app rabbit +14:02:50.600 rabbitmq> 2024-09-13 14:02:50.600322+00:00 [info] <0.254.0> Running boot step rabbit_vhost_limit defined by app rabbit +14:02:50.600 rabbitmq> 2024-09-13 14:02:50.600413+00:00 [info] <0.254.0> Running boot step rabbit_federation_parameters defined by app rabbitmq_federation +14:02:50.601 rabbitmq> 2024-09-13 14:02:50.600517+00:00 [info] <0.254.0> Running boot step rabbit_federation_supervisor defined by app rabbitmq_federation +14:02:50.609 rabbitmq> 2024-09-13 14:02:50.609690+00:00 [info] <0.254.0> Running boot step rabbit_federation_queue defined by app rabbitmq_federation +14:02:50.610 rabbitmq> 2024-09-13 14:02:50.609844+00:00 [info] <0.254.0> Running boot step rabbit_federation_upstream_exchange defined by app rabbitmq_federation +14:02:50.610 rabbitmq> 2024-09-13 14:02:50.609994+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management +14:02:50.610 rabbitmq> 2024-09-13 14:02:50.610112+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent +14:02:50.610 rabbitmq> 2024-09-13 14:02:50.610167+00:00 [info] <0.254.0> Management plugin: using rates mode 'basic' +14:02:50.610 rabbitmq> 2024-09-13 14:02:50.610328+00:00 [info] <0.254.0> Running boot step recovery defined by app rabbit +14:02:50.624 rabbitmq> 2024-09-13 14:02:50.623565+00:00 [info] <0.254.0> Running boot step empty_db_check defined by app rabbit +14:02:50.624 rabbitmq> 2024-09-13 14:02:50.623671+00:00 [info] <0.254.0> Will seed default virtual host and user... +14:02:50.624 rabbitmq> 2024-09-13 14:02:50.623790+00:00 [info] <0.254.0> Adding vhost '/' (description: 'Default virtual host', tags: []) +14:02:50.689 rabbitmq> 2024-09-13 14:02:50.688821+00:00 [info] <0.630.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists +14:02:50.694 rabbitmq> 2024-09-13 14:02:50.693675+00:00 [info] <0.630.0> Setting segment_entry_count for vhost '/' with 0 queues to '2048' +14:02:50.733 rabbitmq> 2024-09-13 14:02:50.732192+00:00 [info] <0.630.0> Starting message stores for vhost '/' +14:02:50.733 rabbitmq> 2024-09-13 14:02:50.732561+00:00 [info] <0.639.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index +14:02:50.736 rabbitmq> 2024-09-13 14:02:50.736102+00:00 [info] <0.630.0> Started message store of type transient for vhost '/' +14:02:50.736 rabbitmq> 2024-09-13 14:02:50.736489+00:00 [info] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index +14:02:50.738 rabbitmq> 2024-09-13 14:02:50.738285+00:00 [warning] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch +14:02:50.740 rabbitmq> 2024-09-13 14:02:50.740235+00:00 [info] <0.630.0> Started message store of type persistent for vhost '/' +14:02:50.741 rabbitmq> 2024-09-13 14:02:50.740439+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_classic_queue took 45ms +14:02:50.741 rabbitmq> 2024-09-13 14:02:50.740499+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_quorum_queue took 0ms +14:02:50.741 rabbitmq> 2024-09-13 14:02:50.740558+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_stream_queue took 0ms +14:02:50.749 rabbitmq> 2024-09-13 14:02:50.749033+00:00 [info] <0.254.0> Created user 'guest' +14:02:50.757 rabbitmq> 2024-09-13 14:02:50.757105+00:00 [info] <0.254.0> Successfully set user tags for user 'guest' to [administrator] +14:02:50.764 rabbitmq> 2024-09-13 14:02:50.764226+00:00 [info] <0.254.0> Successfully set permissions for user 'guest' in virtual host '/' to '.*', '.*', '.*' +14:02:50.764 rabbitmq> 2024-09-13 14:02:50.764286+00:00 [info] <0.254.0> Running boot step rabbit_observer_cli defined by app rabbit +14:02:50.764 rabbitmq> 2024-09-13 14:02:50.764381+00:00 [info] <0.254.0> Running boot step rabbit_looking_glass defined by app rabbit +14:02:50.765 rabbitmq> 2024-09-13 14:02:50.764410+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics_gc defined by app rabbit +14:02:50.765 rabbitmq> 2024-09-13 14:02:50.764551+00:00 [info] <0.254.0> Running boot step background_gc defined by app rabbit +14:02:50.765 rabbitmq> 2024-09-13 14:02:50.764658+00:00 [info] <0.254.0> Running boot step routing_ready defined by app rabbit +14:02:50.765 rabbitmq> 2024-09-13 14:02:50.764683+00:00 [info] <0.254.0> Running boot step pre_flight defined by app rabbit +14:02:50.765 rabbitmq> 2024-09-13 14:02:50.764720+00:00 [info] <0.254.0> Running boot step notify_cluster defined by app rabbit +14:02:50.765 rabbitmq> 2024-09-13 14:02:50.764779+00:00 [info] <0.254.0> Running boot step networking defined by app rabbit +14:02:50.765 rabbitmq> 2024-09-13 14:02:50.764865+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue_periodic_membership_reconciliation defined by app rabbit +14:02:50.766 rabbitmq> 2024-09-13 14:02:50.765024+00:00 [info] <0.254.0> Running boot step definition_import_worker_pool defined by app rabbit +14:02:50.766 rabbitmq> 2024-09-13 14:02:50.765241+00:00 [info] <0.315.0> Starting worker pool 'definition_import_pool' with 4 processes in it +14:02:50.766 rabbitmq> 2024-09-13 14:02:50.765594+00:00 [info] <0.254.0> Running boot step cluster_name defined by app rabbit +14:02:50.767 rabbitmq> 2024-09-13 14:02:50.765688+00:00 [info] <0.254.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-MXjc9I3DROEAFxF2abAmzA' +14:02:50.774 rabbitmq> 2024-09-13 14:02:50.773723+00:00 [info] <0.254.0> Running boot step virtual_host_reconciliation defined by app rabbit +14:02:50.775 rabbitmq> 2024-09-13 14:02:50.774166+00:00 [info] <0.254.0> Running boot step direct_client defined by app rabbit +14:02:50.775 rabbitmq> 2024-09-13 14:02:50.774268+00:00 [info] <0.254.0> Running boot step rabbit_federation_exchange defined by app rabbitmq_federation +14:02:50.775 rabbitmq> 2024-09-13 14:02:50.774475+00:00 [info] <0.254.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management +14:02:50.775 rabbitmq> 2024-09-13 14:02:50.775111+00:00 [info] <0.680.0> Resetting node maintenance status +14:02:50.949 rabbitmq> 2024-09-13 14:02:50.948624+00:00 [warning] <0.709.0> Deprecated features: `management_metrics_collection`: Feature `management_metrics_collection` is deprecated. +14:02:50.949 rabbitmq> 2024-09-13 14:02:50.948624+00:00 [warning] <0.709.0> By default, this feature can still be used for now. +14:02:50.949 rabbitmq> 2024-09-13 14:02:50.948624+00:00 [warning] <0.709.0> Its use will not be permitted by default in a future minor RabbitMQ version and the feature will be removed from a future major RabbitMQ version; actual versions to be determined. +14:02:50.949 rabbitmq> 2024-09-13 14:02:50.948624+00:00 [warning] <0.709.0> To continue using this feature when it is not permitted by default, set the following parameter in your configuration: +14:02:50.949 rabbitmq> 2024-09-13 14:02:50.948624+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = true" +14:02:50.949 rabbitmq> 2024-09-13 14:02:50.948624+00:00 [warning] <0.709.0> To test RabbitMQ as if the feature was removed, set this in your configuration: +14:02:50.949 rabbitmq> 2024-09-13 14:02:50.948624+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = false" +14:02:54.080 rabbitmq> 2024-09-13 14:02:54.080061+00:00 [info] <0.746.0> Management plugin: HTTP (non-TLS) listener started on port 15672 +14:02:54.080 rabbitmq> 2024-09-13 14:02:54.080200+00:00 [info] <0.776.0> Statistics database started. +14:02:54.081 rabbitmq> 2024-09-13 14:02:54.080279+00:00 [info] <0.775.0> Starting worker pool 'management_worker_pool' with 3 processes in it +14:02:54.088 rabbitmq> 2024-09-13 14:02:54.087725+00:00 [info] <0.794.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692 +14:02:54.088 rabbitmq> 2024-09-13 14:02:54.087868+00:00 [info] <0.680.0> Ready to start client connection listeners +14:02:54.089 rabbitmq> 2024-09-13 14:02:54.089519+00:00 [info] <0.838.0> started TCP listener on [::]:5672 +14:02:54.185 rabbitmq> 2024-09-13 14:02:54.185597+00:00 [info] <0.680.0> Server startup complete; 5 plugins started. +[INFO] DOCKER> Pattern 'Server startup complete' matched for container d5371c7ce138 +14:02:54.185 rabbitmq> 2024-09-13 14:02:54.185597+00:00 [info] <0.680.0> * rabbitmq_prometheus +14:02:54.185 rabbitmq> 2024-09-13 14:02:54.185597+00:00 [info] <0.680.0> * rabbitmq_federation +14:02:54.185 rabbitmq> 2024-09-13 14:02:54.185597+00:00 [info] <0.680.0> * rabbitmq_management +14:02:54.185 rabbitmq> 2024-09-13 14:02:54.185597+00:00 [info] <0.680.0> * rabbitmq_management_agent +14:02:54.186 rabbitmq> 2024-09-13 14:02:54.185597+00:00 [info] <0.680.0> * rabbitmq_web_dispatch +14:02:54.186 rabbitmq> completed with 5 plugins. +14:02:54.197 rabbitmq> 2024-09-13 14:02:54.196794+00:00 [info] <0.9.0> Time to start RabbitMQ: 8542 ms +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waited on url http://localhost:15672 and on log out 'Server startup complete' 9069 ms +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Start container 0a2fc7975506 +14:02:55.724 localstack> +14:02:55.724 localstack> LocalStack version: 3.7.3.dev18 +14:02:55.724 localstack> LocalStack build date: 2024-09-13 +14:02:55.724 localstack> LocalStack build git hash: 55e2d9fd6 +14:02:55.724 localstack> +14:02:56.209 localstack> Ready. +[INFO] DOCKER> Pattern 'Ready.' matched for container 0a2fc7975506 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Waited on log out 'Ready.' 1510 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container af2d4fde965e +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Start container 8279c668b480 +14:02:57.564 worker-languagedetection> [2024-09-13 14:02:57.563Z #007.??? INFO - - ] startup.sh: Running startup scripts... +14:02:57.566 worker-languagedetection> [2024-09-13 14:02:57.566Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +14:02:57.575 worker-languagedetection> [2024-09-13 14:02:57.574Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +14:02:57.578 worker-languagedetection> [2024-09-13 14:02:57.576Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waiting on url http://localhost:8080/health-check?type=READY with method HEAD for status 200..399. +14:02:57.588 worker-languagedetection> [2024-09-13 14:02:57.587Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +14:02:57.590 worker-languagedetection> [2024-09-13 14:02:57.590Z #007.??? INFO - - ] startup.sh: Startup scripts completed +14:02:57.592 worker-languagedetection> [2024-09-13 14:02:57.591Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +14:02:57.905 worker-languagedetection> 14:02:57,734 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +14:02:57.905 worker-languagedetection> 14:02:57,737 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +14:02:57.905 worker-languagedetection> 14:02:57,737 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +14:02:57.905 worker-languagedetection> 14:02:57,738 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +14:02:57.905 worker-languagedetection> 14:02:57,744 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +14:02:57.905 worker-languagedetection> 14:02:57,745 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +14:02:57.905 worker-languagedetection> 14:02:57,754 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 7 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +14:02:57.905 worker-languagedetection> 14:02:57,754 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +14:02:57.905 worker-languagedetection> 14:02:57,755 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +14:02:57.905 worker-languagedetection> 14:02:57,755 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +14:02:57.905 worker-languagedetection> 14:02:57,759 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +14:02:57.905 worker-languagedetection> 14:02:57,764 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +14:02:57.905 worker-languagedetection> 14:02:57,804 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +14:02:57.905 worker-languagedetection> 14:02:57,804 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +14:02:57.905 worker-languagedetection> 14:02:57,804 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +14:02:57.905 worker-languagedetection> 14:02:57,850 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +14:02:57.905 worker-languagedetection> 14:02:57,850 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +14:02:57.905 worker-languagedetection> 14:02:57,850 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +14:02:57.905 worker-languagedetection> 14:02:57,853 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +14:02:57.905 worker-languagedetection> 14:02:57,853 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +14:02:57.905 worker-languagedetection> 14:02:57,861 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +14:02:57.905 worker-languagedetection> 14:02:57,863 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +14:02:57.905 worker-languagedetection> 14:02:57,892 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +14:02:57.905 worker-languagedetection> 14:02:57,895 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +14:02:57.905 worker-languagedetection> 14:02:57,895 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +14:02:57.905 worker-languagedetection> 14:02:57,896 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +14:02:57.905 worker-languagedetection> 14:02:57,896 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +14:02:57.905 worker-languagedetection> 14:02:57,897 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +14:02:57.905 worker-languagedetection> 14:02:57,897 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +14:02:57.905 worker-languagedetection> 14:02:57,897 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +14:02:57.905 worker-languagedetection> 14:02:57,897 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 142 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY +14:02:57.905 worker-languagedetection> +14:02:58.113 worker-languagedetection> [2024-09-13 14:02:58.093Z #6b5.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +14:02:58.896 worker-languagedetection> [2024-09-13 14:02:58.896Z #6b5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +14:02:58.897 worker-languagedetection> [2024-09-13 14:02:58.897Z #6b5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +14:02:58.898 worker-languagedetection> [2024-09-13 14:02:58.898Z #6b5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +14:02:58.910 worker-languagedetection> [2024-09-13 14:02:58.909Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +14:02:58.912 worker-languagedetection> [2024-09-13 14:02:58.912Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +14:02:58.913 worker-languagedetection> [2024-09-13 14:02:58.913Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +14:02:58.915 worker-languagedetection> [2024-09-13 14:02:58.914Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +14:02:58.923 worker-languagedetection> [2024-09-13 14:02:58.922Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +14:02:58.924 worker-languagedetection> [2024-09-13 14:02:58.924Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +14:02:58.929 worker-languagedetection> [2024-09-13 14:02:58.925Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +14:02:58.983 worker-languagedetection> [2024-09-13 14:02:58.982Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider +14:02:59.033 worker-languagedetection> [2024-09-13 14:02:59.029Z #6b5.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} +14:02:59.142 worker-languagedetection> [2024-09-13 14:02:59.142Z #6b5.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@65c33b92{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +14:02:59.142 worker-languagedetection> [2024-09-13 14:02:59.142Z #6b5.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@7903d448{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +14:02:59.145 worker-languagedetection> [2024-09-13 14:02:59.145Z #6b5.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS +14:02:59.156 worker-languagedetection> [2024-09-13 14:02:59.156Z #6b5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. +14:02:59.175 worker-languagedetection> [2024-09-13 14:02:59.174Z #6b5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE +14:02:59.195 worker-languagedetection> [2024-09-13 14:02:59.195Z #6b5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY +14:02:59.196 worker-languagedetection> [2024-09-13 14:02:59.196Z #6b5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY +14:02:59.197 worker-languagedetection> [2024-09-13 14:02:59.197Z #6b5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY +14:02:59.198 worker-languagedetection> [2024-09-13 14:02:59.198Z #6b5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE +14:02:59.199 worker-languagedetection> [2024-09-13 14:02:59.199Z #6b5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY +14:02:59.201 worker-languagedetection> [2024-09-13 14:02:59.201Z #6b5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE +14:02:59.205 worker-languagedetection> +14:02:59.532 worker-languagedetection> [2024-09-13 14:02:59.531Z #6b5.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} +14:02:59.533 worker-languagedetection> [2024-09-13 14:02:59.533Z #6b5.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@58f2466c{/,null,AVAILABLE} +14:02:59.537 worker-languagedetection> [2024-09-13 14:02:59.536Z #6b5.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} +14:02:59.537 worker-languagedetection> [2024-09-13 14:02:59.537Z #6b5.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@1376883{/,null,AVAILABLE} +14:02:59.544 worker-languagedetection> [2024-09-13 14:02:59.543Z #6b5.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@65c33b92{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +14:02:59.545 worker-languagedetection> [2024-09-13 14:02:59.545Z #6b5.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@7903d448{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +14:02:59.547 worker-languagedetection> [2024-09-13 14:02:59.547Z #6b5.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@43af351a{STARTING}[11.0.23,sto=30000] @1951ms +14:02:59.663 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:02:59 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 13 +14:03:00.159 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:00 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:00.666 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:00 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:03:01.174 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:01 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:03:01.683 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:01 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:02.196 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:02 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 +14:03:02.701 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:02 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:03.207 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:03 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:03.717 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:03 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:04.231 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:04 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 +14:03:04.735 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:04 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:05.240 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:05 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:05.745 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:05 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:03:06.250 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:06 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:06.755 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:06 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:07.267 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:07 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:03:07.771 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:07 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:08.284 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:08 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:03:08.787 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:08 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:03:09.294 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:09 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:09.804 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:09 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:10.317 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:10 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:03:10.821 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:10 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:11.330 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:11 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:11.835 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:11 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:03:12.341 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:12 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:12.846 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:12 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:13.358 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:13 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:03:13.866 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:13 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:03:14.200 worker-languagedetection> [2024-09-13 14:03:14.199Z #6b5.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE +14:03:14.220 rabbitmq> 2024-09-13 14:03:14.220645+00:00 [info] <0.845.0> accepting AMQP connection <0.845.0> (172.17.0.5:49430 -> 172.17.0.3:5672) +14:03:14.240 rabbitmq> 2024-09-13 14:03:14.240033+00:00 [info] <0.845.0> connection <0.845.0> (172.17.0.5:49430 -> 172.17.0.3:5672): user 'guest' authenticated and granted access to vhost '/' +14:03:14.248 worker-languagedetection> [2024-09-13 14:03:14.248Z #6b5.034 WARN - - ] c.h.c.util.rabbitmq.RabbitUtil: Priority is not supported with quorum queues +14:03:14.312 rabbitmq> 2024-09-13 14:03:14.311871+00:00 [notice] <0.866.0> queue 'LanguageDetectionWorker-input-1' in vhost '/': candidate -> leader in term: 1 machine version: 3 +14:03:14.312 rabbitmq> 2024-09-13 14:03:14.312273+00:00 [info] <0.860.0> ra: started cluster %2F_LanguageDetectionWorker-input-1 with 1 servers +14:03:14.312 rabbitmq> 2024-09-13 14:03:14.312273+00:00 [info] <0.860.0> 0 servers failed to start: [] +14:03:14.312 rabbitmq> 2024-09-13 14:03:14.312273+00:00 [info] <0.860.0> Leader: {'%2F_LanguageDetectionWorker-input-1',rabbit@d5371c7ce138} +14:03:14.335 worker-languagedetection> [2024-09-13 14:03:14.335Z #6b5.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE +14:03:14.336 worker-languagedetection> [2024-09-13 14:03:14.335Z #6b5.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY +14:03:14.336 worker-languagedetection> [2024-09-13 14:03:14.335Z #6b5.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE +14:03:14.338 worker-languagedetection> [2024-09-13 14:03:14.338Z #6b5.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY +14:03:14.338 worker-languagedetection> [2024-09-13 14:03:14.338Z #6b5.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY +14:03:14.338 worker-languagedetection> [2024-09-13 14:03:14.338Z #6b5.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waited on url http://localhost:8080/health-check?type=READY 16791 ms +14:03:14.371 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:14 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Start container 441de5dce462 +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. +14:03:14.755 sqs-worker-languagedetection> [2024-09-13 14:03:14.754Z #007.??? INFO - - ] startup.sh: Running startup scripts... +14:03:14.758 sqs-worker-languagedetection> [2024-09-13 14:03:14.757Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +14:03:14.767 sqs-worker-languagedetection> [2024-09-13 14:03:14.765Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +14:03:14.769 sqs-worker-languagedetection> [2024-09-13 14:03:14.768Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +14:03:14.778 sqs-worker-languagedetection> [2024-09-13 14:03:14.776Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +14:03:14.784 sqs-worker-languagedetection> [2024-09-13 14:03:14.783Z #007.??? INFO - - ] startup.sh: Startup scripts completed +14:03:14.786 sqs-worker-languagedetection> [2024-09-13 14:03:14.785Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +14:03:15.095 sqs-worker-languagedetection> 14:03:14,928 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +14:03:15.095 sqs-worker-languagedetection> 14:03:14,929 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +14:03:15.095 sqs-worker-languagedetection> 14:03:14,929 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +14:03:15.095 sqs-worker-languagedetection> 14:03:14,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +14:03:15.095 sqs-worker-languagedetection> 14:03:14,935 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +14:03:15.095 sqs-worker-languagedetection> 14:03:14,936 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +14:03:15.095 sqs-worker-languagedetection> 14:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +14:03:15.095 sqs-worker-languagedetection> 14:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +14:03:15.095 sqs-worker-languagedetection> 14:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +14:03:15.095 sqs-worker-languagedetection> 14:03:14,946 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +14:03:15.095 sqs-worker-languagedetection> 14:03:14,949 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +14:03:15.095 sqs-worker-languagedetection> 14:03:14,954 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +14:03:15.095 sqs-worker-languagedetection> 14:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +14:03:15.095 sqs-worker-languagedetection> 14:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +14:03:15.095 sqs-worker-languagedetection> 14:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +14:03:15.095 sqs-worker-languagedetection> 14:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +14:03:15.095 sqs-worker-languagedetection> 14:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +14:03:15.095 sqs-worker-languagedetection> 14:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +14:03:15.095 sqs-worker-languagedetection> 14:03:15,046 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +14:03:15.095 sqs-worker-languagedetection> 14:03:15,046 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +14:03:15.095 sqs-worker-languagedetection> 14:03:15,054 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +14:03:15.095 sqs-worker-languagedetection> 14:03:15,056 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +14:03:15.095 sqs-worker-languagedetection> 14:03:15,083 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +14:03:15.095 sqs-worker-languagedetection> 14:03:15,086 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +14:03:15.095 sqs-worker-languagedetection> 14:03:15,086 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +14:03:15.095 sqs-worker-languagedetection> 14:03:15,086 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +14:03:15.095 sqs-worker-languagedetection> 14:03:15,087 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +14:03:15.095 sqs-worker-languagedetection> 14:03:15,087 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +14:03:15.095 sqs-worker-languagedetection> 14:03:15,087 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +14:03:15.095 sqs-worker-languagedetection> 14:03:15,087 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +14:03:15.095 sqs-worker-languagedetection> 14:03:15,087 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 142 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY +14:03:15.095 sqs-worker-languagedetection> +14:03:15.289 sqs-worker-languagedetection> [2024-09-13 14:03:15.270Z #3c5.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +14:03:15.945 sqs-worker-languagedetection> [2024-09-13 14:03:15.945Z #3c5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +14:03:15.946 sqs-worker-languagedetection> [2024-09-13 14:03:15.946Z #3c5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +14:03:15.948 sqs-worker-languagedetection> [2024-09-13 14:03:15.946Z #3c5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +14:03:15.958 sqs-worker-languagedetection> [2024-09-13 14:03:15.958Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +14:03:15.960 sqs-worker-languagedetection> [2024-09-13 14:03:15.960Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +14:03:15.961 sqs-worker-languagedetection> [2024-09-13 14:03:15.961Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +14:03:15.963 sqs-worker-languagedetection> [2024-09-13 14:03:15.962Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +14:03:15.970 sqs-worker-languagedetection> [2024-09-13 14:03:15.969Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +14:03:15.971 sqs-worker-languagedetection> [2024-09-13 14:03:15.970Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +14:03:15.972 sqs-worker-languagedetection> [2024-09-13 14:03:15.972Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +14:03:15.975 sqs-worker-languagedetection> com.hpe.caf.api.worker.DataStoreException: Cannot create data store +14:03:15.976 sqs-worker-languagedetection> at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) +14:03:15.976 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) +14:03:15.976 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) +14:03:15.976 sqs-worker-languagedetection> at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) +14:03:15.976 sqs-worker-languagedetection> at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) +14:03:15.976 sqs-worker-languagedetection> at io.dropwizard.core.cli.Cli.run(Cli.java:78) +14:03:15.976 sqs-worker-languagedetection> at io.dropwizard.core.Application.run(Application.java:94) +14:03:15.976 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) +14:03:15.976 sqs-worker-languagedetection> Caused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration +14:03:15.976 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) +14:03:15.977 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) +14:03:15.977 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) +14:03:15.977 sqs-worker-languagedetection> at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) +14:03:15.977 sqs-worker-languagedetection> ... 7 more +[2024-09-13 14:03:14.754Z #007.??? INFO - - ] startup.sh: Running startup scripts... +[2024-09-13 14:03:14.757Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +[2024-09-13 14:03:14.765Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +[2024-09-13 14:03:14.768Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +[2024-09-13 14:03:14.776Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +[2024-09-13 14:03:14.783Z #007.??? INFO - - ] startup.sh: Startup scripts completed +[2024-09-13 14:03:14.785Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +14:03:14,928 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +14:03:14,929 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +14:03:14,929 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +14:03:14,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +14:03:14,935 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +14:03:14,936 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +14:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +14:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +14:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +14:03:14,946 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +14:03:14,949 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +14:03:14,954 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +14:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +14:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +14:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +14:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +14:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +14:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +14:03:15,046 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +14:03:15,046 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +14:03:15,054 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +14:03:15,056 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +14:03:15,083 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +14:03:15,086 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +14:03:15,086 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +14:03:15,086 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +14:03:15,087 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +14:03:15,087 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +14:03:15,087 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +14:03:15,087 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +14:03:15,087 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 142 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +[2024-09-13 14:03:15.270Z #3c5.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +[2024-09-13 14:03:15.945Z #3c5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +[2024-09-13 14:03:15.946Z #3c5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +[2024-09-13 14:03:15.946Z #3c5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +[2024-09-13 14:03:15.958Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +[2024-09-13 14:03:15.960Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +[2024-09-13 14:03:15.961Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +[2024-09-13 14:03:15.962Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +[2024-09-13 14:03:15.969Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +[2024-09-13 14:03:15.970Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +[2024-09-13 14:03:15.972Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +com.hpe.caf.api.worker.DataStoreException: Cannot create data store + at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) + at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) + at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) + at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) + at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) + at io.dropwizard.core.cli.Cli.run(Cli.java:78) + at io.dropwizard.core.Application.run(Application.java:94) + at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) +Caused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration + at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) + at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) + at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) + at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) + ... 7 more +441de5[2024-09-13 14:03:14.754Z #007.??? INFO - - ] startup.sh: Running startup scripts... +441de5[2024-09-13 14:03:14.757Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +441de5[2024-09-13 14:03:14.765Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +441de5[2024-09-13 14:03:14.768Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +441de5[2024-09-13 14:03:14.776Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +441de5[2024-09-13 14:03:14.783Z #007.??? INFO - - ] startup.sh: Startup scripts completed +441de5[2024-09-13 14:03:14.785Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +441de514:03:14,928 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +441de514:03:14,929 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +441de514:03:14,929 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +441de514:03:14,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +441de514:03:14,935 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +441de514:03:14,936 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +441de514:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +441de514:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +441de514:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +441de514:03:14,946 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +441de514:03:14,949 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +441de514:03:14,954 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +441de514:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +441de514:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +441de514:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +441de514:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +441de514:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +441de514:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +441de514:03:15,046 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +441de514:03:15,046 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +441de514:03:15,054 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +441de514:03:15,056 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +441de514:03:15,083 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +441de514:03:15,086 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +441de514:03:15,086 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +441de514:03:15,086 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +441de514:03:15,087 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +441de514:03:15,087 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +441de514:03:15,087 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +441de514:03:15,087 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +441de514:03:15,087 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 142 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY +441de5 +441de5[2024-09-13 14:03:15.270Z #3c5.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +441de5[2024-09-13 14:03:15.945Z #3c5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +441de5[2024-09-13 14:03:15.946Z #3c5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +441de5[2024-09-13 14:03:15.946Z #3c5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +441de5[2024-09-13 14:03:15.958Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +441de5[2024-09-13 14:03:15.960Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +441de5[2024-09-13 14:03:15.961Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +441de5[2024-09-13 14:03:15.962Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +441de5[2024-09-13 14:03:15.969Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +441de5[2024-09-13 14:03:15.970Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +441de5[2024-09-13 14:03:15.972Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +441de5com.hpe.caf.api.worker.DataStoreException: Cannot create data store +441de5 at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) +441de5 at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) +441de5 at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) +441de5 at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) +441de5 at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) +441de5 at io.dropwizard.core.cli.Cli.run(Cli.java:78) +441de5 at io.dropwizard.core.Application.run(Application.java:94) +441de5 at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) +441de5Caused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration +441de5 at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) +441de5 at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) +441de5 at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) +441de5 at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) +441de5 ... 7 more +[ERROR] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 1800 ms while waiting on url http://localhost:8082/health-check?type=READY +[ERROR] DOCKER> Error occurred during container startup, shutting down... +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Stop and removed container 441de5dce462 after 0 ms +14:03:17.120 worker-languagedetection> [2024-09-13 14:03:17.120Z #6b5.033 INFO - - ] o.eclipse.jetty.server.Server: Stopped Server@43af351a{STOPPING}[11.0.23,sto=30000] +14:03:17.120 worker-languagedetection> [2024-09-13 14:03:17.120Z #6b5.033 INFO - - ] o.eclipse.jetty.server.Server: Shutdown Server@43af351a{STOPPING}[11.0.23,sto=30000] +14:03:17.124 worker-languagedetection> [2024-09-13 14:03:17.123Z #6b5.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped application@65c33b92{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +14:03:17.125 worker-languagedetection> [2024-09-13 14:03:17.124Z #6b5.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped admin@7903d448{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +14:03:17.126 worker-languagedetection> [2024-09-13 14:03:17.126Z #6b5.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@1376883{/,null,STOPPED} +14:03:17.132 worker-languagedetection> [2024-09-13 14:03:17.132Z #6b5.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@58f2466c{/,null,STOPPED} +14:03:17.135 worker-languagedetection> [2024-09-13 14:03:17.135Z #6b5.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stop requested, allowing in-progress tasks to complete. +14:03:17.149 rabbitmq> 2024-09-13 14:03:17.149450+00:00 [info] <0.845.0> closing AMQP connection <0.845.0> (172.17.0.5:49430 -> 172.17.0.3:5672, vhost: '/', user: 'guest') +14:03:17.150 worker-languagedetection> [2024-09-13 14:03:17.149Z #6b5.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stopped. +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Stop and removed container 8279c668b480 after 0 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container af2d4fde965e after 0 ms +14:03:18.314 localstack> Localstack runtime received signal 15 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Stop and removed container 0a2fc7975506 after 0 ms +14:03:21.539 rabbitmq> 2024-09-13 14:03:21.539108+00:00 [notice] <0.64.0> SIGTERM received - shutting down +14:03:21.539 rabbitmq> 2024-09-13 14:03:21.539108+00:00 [notice] <0.64.0> +14:03:21.541 rabbitmq> 2024-09-13 14:03:21.540873+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_prometheus_tls +14:03:21.546 rabbitmq> 2024-09-13 14:03:21.545977+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_management_tls +14:03:21.553 rabbitmq> 2024-09-13 14:03:21.552648+00:00 [info] <0.838.0> stopped TCP listener on [::]:5672 +14:03:21.554 rabbitmq> 2024-09-13 14:03:21.554358+00:00 [info] <0.630.0> Virtual host '/' is stopping +14:03:21.554 rabbitmq> 2024-09-13 14:03:21.554472+00:00 [info] <0.879.0> Closing all connections in vhost '/' on node 'rabbit@d5371c7ce138' because the vhost is stopping +14:03:21.555 rabbitmq> 2024-09-13 14:03:21.554475+00:00 [info] <0.643.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' +14:03:21.566 rabbitmq> 2024-09-13 14:03:21.566007+00:00 [info] <0.643.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' is stopped +14:03:21.566 rabbitmq> 2024-09-13 14:03:21.566193+00:00 [info] <0.639.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' +14:03:21.575 rabbitmq> 2024-09-13 14:03:21.575338+00:00 [info] <0.639.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' is stopped +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Stop and removed container d5371c7ce138 after 0 ms +14:03:23.748 webdav> Caught SIGTERM signal! +14:03:23.748 webdav> ++ _term +14:03:23.748 webdav> ++ echo 'Caught SIGTERM signal!' +14:03:23.748 webdav> ++ kill -TERM '' +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container a08457f6b776 after 0 ms +[ERROR] DOCKER> I/O Error [[dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 1800 ms while waiting on url http://localhost:8082/health-check?type=READY] +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD FAILURE +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 03:35 min +[INFO] Finished at: 2024-09-13T15:03:24+01:00 +[INFO] ------------------------------------------------------------------------ +[ERROR] Failed to execute goal io.fabric8:docker-maven-plugin:0.43.4:start (start) on project worker-languagedetection-container: I/O Error: [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 1800 ms while waiting on url http://localhost:8082/health-check?type=READY -> [Help 1] +[ERROR] +[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. +[ERROR] Re-run Maven using the -X switch to enable full debug logging. +[ERROR] +[ERROR] For more information about the errors and possible solutions, please read the following articles: +[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException +[INFO] Scanning for projects... +[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] +[INFO] Inspecting build with total of 1 modules... +[INFO] Installing Nexus Staging features: +[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin +[INFO] +[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- +[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT +[INFO] from pom.xml +[INFO] --------------------------------[ pom ]--------------------------------- +[INFO] +[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... +[INFO] Scanning for projects... +[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] +[INFO] Inspecting build with total of 1 modules... +[INFO] Installing Nexus Staging features: +[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin +[INFO] +[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- +[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT +[INFO] from pom.xml +[INFO] --------------------------------[ pom ]--------------------------------- +[INFO] +[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] +[INFO] +[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- +[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target +[INFO] +[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- +[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed +[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed +[INFO] +[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- +[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true +[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container +[INFO] Git info extracted in 390ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' +[INFO] +[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- +[INFO] Using plugin classloader, includes GMavenPlus and project classpath. +[INFO] Using Groovy 3.0.19 to perform execute. +[INFO] +[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- +[INFO] Updating license headers... +[INFO] +[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- +[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar +[INFO] +[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- +[INFO] Copying 2 resources from src/main/config to target/config-files +[INFO] +[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- +[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox +[INFO] DOCKER> +[INFO] DOCKER> ---> 6fd955f66c23 +[INFO] DOCKER> Step 2/4 : COPY maven /config/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> a2fc7b236f6a +[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 812e68848b67 +[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 4a9eb07106d2 +[INFO] DOCKER> Successfully built 4a9eb07106d2 +[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:4a9eb +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/sqs-worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/sqs-worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Created docker-build.tar in 1 minute and 16 seconds +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 +[INFO] DOCKER> +[INFO] DOCKER> ---> 0f51baaf46f5 +[INFO] DOCKER> Step 2/4 : COPY maven /maven/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 91e7f56ef8cf +[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 002fc83963fa +[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 2adee4e4f048 +[INFO] DOCKER> Successfully built 2adee4e4f048 +[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Built image sha256:2adee +[INFO] +[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- +[INFO] Changes detected - recompiling the module! :source +[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes +[INFO] +[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- +[INFO] +[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- +[INFO] Not executing Javadoc as the project is not a Java classpath-capable package +[INFO] +[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container c508cf0a571b +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. +14:16:50.419 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf +14:16:50.434 webdav> + getent passwd 33 +14:16:50.436 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin +14:16:50.437 webdav> + useradd -r webdav -u 33 -g 33 +14:16:50.469 webdav> useradd: UID 33 is not unique +14:16:50.471 webdav> + mkdir -p /srv/common/webdav +14:16:50.473 webdav> + chown 33 /srv/common/webdav +14:16:50.475 webdav> + trap _term SIGTERM +14:16:50.475 webdav> + pid=12 +14:16:50.475 webdav> + wait 12 +14:16:50.475 webdav> + /usr/sbin/apache2 -D FOREGROUND +14:16:50.536 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +14:16:50.540 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +14:16:50.541 webdav> [Fri Sep 13 14:16:50.541431 2024] [mpm_event:notice] [pid 12:tid 140019793577856] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations +14:16:50.541 webdav> [Fri Sep 13 14:16:50.541509 2024] [core:notice] [pid 12:tid 140019793577856] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' +14:16:50.609 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:14:16:50 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 187 ms +[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Start container 55cc951e87ea +14:16:52.623 localstack> +14:16:52.623 localstack> LocalStack version: 3.7.3.dev18 +14:16:52.623 localstack> LocalStack build date: 2024-09-13 +14:16:52.623 localstack> LocalStack build git hash: 55e2d9fd6 +14:16:52.623 localstack> +14:16:54.387 localstack> Ready. +[INFO] DOCKER> Pattern 'Ready.' matched for container 55cc951e87ea +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Waited on log out 'Ready.' 3528 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container 7046f389076d +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Start container fbad9ac5cf83 +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. +14:16:55.788 sqs-worker-languagedetection> [2024-09-13 14:16:55.787Z #007.??? INFO - - ] startup.sh: Running startup scripts... +14:16:55.793 sqs-worker-languagedetection> [2024-09-13 14:16:55.792Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +14:16:55.806 sqs-worker-languagedetection> [2024-09-13 14:16:55.803Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +14:16:55.809 sqs-worker-languagedetection> [2024-09-13 14:16:55.808Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +14:16:55.816 sqs-worker-languagedetection> [2024-09-13 14:16:55.815Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +14:16:55.818 sqs-worker-languagedetection> [2024-09-13 14:16:55.818Z #007.??? INFO - - ] startup.sh: Startup scripts completed +14:16:55.821 sqs-worker-languagedetection> [2024-09-13 14:16:55.820Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +14:16:56.669 sqs-worker-languagedetection> 14:16:56,363 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +14:16:56.669 sqs-worker-languagedetection> 14:16:56,364 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +14:16:56.669 sqs-worker-languagedetection> 14:16:56,365 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +14:16:56.669 sqs-worker-languagedetection> 14:16:56,366 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +14:16:56.669 sqs-worker-languagedetection> 14:16:56,374 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +14:16:56.669 sqs-worker-languagedetection> 14:16:56,374 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +14:16:56.669 sqs-worker-languagedetection> 14:16:56,387 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 10 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +14:16:56.669 sqs-worker-languagedetection> 14:16:56,387 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +14:16:56.669 sqs-worker-languagedetection> 14:16:56,388 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +14:16:56.669 sqs-worker-languagedetection> 14:16:56,389 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +14:16:56.669 sqs-worker-languagedetection> 14:16:56,395 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +14:16:56.669 sqs-worker-languagedetection> 14:16:56,405 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +14:16:56.669 sqs-worker-languagedetection> 14:16:56,493 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +14:16:56.669 sqs-worker-languagedetection> 14:16:56,494 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +14:16:56.669 sqs-worker-languagedetection> 14:16:56,494 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +14:16:56.669 sqs-worker-languagedetection> 14:16:56,575 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +14:16:56.669 sqs-worker-languagedetection> 14:16:56,575 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +14:16:56.669 sqs-worker-languagedetection> 14:16:56,576 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +14:16:56.669 sqs-worker-languagedetection> 14:16:56,580 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +14:16:56.669 sqs-worker-languagedetection> 14:16:56,580 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +14:16:56.669 sqs-worker-languagedetection> 14:16:56,593 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +14:16:56.669 sqs-worker-languagedetection> 14:16:56,599 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +14:16:56.669 sqs-worker-languagedetection> 14:16:56,649 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +14:16:56.669 sqs-worker-languagedetection> 14:16:56,653 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +14:16:56.669 sqs-worker-languagedetection> 14:16:56,653 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +14:16:56.669 sqs-worker-languagedetection> 14:16:56,654 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +14:16:56.669 sqs-worker-languagedetection> 14:16:56,654 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +14:16:56.669 sqs-worker-languagedetection> 14:16:56,655 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +14:16:56.669 sqs-worker-languagedetection> 14:16:56,655 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +14:16:56.669 sqs-worker-languagedetection> 14:16:56,656 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +14:16:56.669 sqs-worker-languagedetection> 14:16:56,656 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 268 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY +14:16:56.669 sqs-worker-languagedetection> +14:16:57.006 sqs-worker-languagedetection> [2024-09-13 14:16:56.973Z #478.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +14:16:57.882 sqs-worker-languagedetection> [2024-09-13 14:16:57.882Z #478.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +14:16:57.885 sqs-worker-languagedetection> [2024-09-13 14:16:57.885Z #478.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +14:16:57.885 sqs-worker-languagedetection> [2024-09-13 14:16:57.885Z #478.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +14:16:57.904 sqs-worker-languagedetection> [2024-09-13 14:16:57.904Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +14:16:57.906 sqs-worker-languagedetection> [2024-09-13 14:16:57.906Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +14:16:57.907 sqs-worker-languagedetection> [2024-09-13 14:16:57.907Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +14:16:57.909 sqs-worker-languagedetection> [2024-09-13 14:16:57.908Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +14:16:57.917 sqs-worker-languagedetection> [2024-09-13 14:16:57.916Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +14:16:57.918 sqs-worker-languagedetection> [2024-09-13 14:16:57.917Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +14:16:57.919 sqs-worker-languagedetection> [2024-09-13 14:16:57.918Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +14:16:57.923 sqs-worker-languagedetection> com.hpe.caf.api.worker.DataStoreException: Cannot create data store +14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) +14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) +14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) +14:16:57.923 sqs-worker-languagedetection> at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) +14:16:57.923 sqs-worker-languagedetection> at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) +14:16:57.923 sqs-worker-languagedetection> at io.dropwizard.core.cli.Cli.run(Cli.java:78) +14:16:57.923 sqs-worker-languagedetection> at io.dropwizard.core.Application.run(Application.java:94) +14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) +14:16:57.923 sqs-worker-languagedetection> Caused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration +14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) +14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) +14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) +14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) +14:16:57.923 sqs-worker-languagedetection> ... 7 more +[2024-09-13 14:16:55.787Z #007.??? INFO - - ] startup.sh: Running startup scripts... +[2024-09-13 14:16:55.792Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +[2024-09-13 14:16:55.803Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +[2024-09-13 14:16:55.808Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +[2024-09-13 14:16:55.815Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +[2024-09-13 14:16:55.818Z #007.??? INFO - - ] startup.sh: Startup scripts completed +[2024-09-13 14:16:55.820Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +14:16:56,363 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +14:16:56,364 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +14:16:56,365 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +14:16:56,366 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +14:16:56,374 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +14:16:56,374 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +14:16:56,387 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 10 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +14:16:56,387 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +14:16:56,388 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +14:16:56,389 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +14:16:56,395 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +14:16:56,405 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +14:16:56,493 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +14:16:56,494 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +14:16:56,494 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +14:16:56,575 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +14:16:56,575 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +14:16:56,576 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +14:16:56,580 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +14:16:56,580 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +14:16:56,593 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +14:16:56,599 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +14:16:56,649 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +14:16:56,653 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +14:16:56,653 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +14:16:56,654 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +14:16:56,654 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +14:16:56,655 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +14:16:56,655 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +14:16:56,656 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +14:16:56,656 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 268 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +[2024-09-13 14:16:56.973Z #478.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +[2024-09-13 14:16:57.882Z #478.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +[2024-09-13 14:16:57.885Z #478.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +[2024-09-13 14:16:57.885Z #478.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +[2024-09-13 14:16:57.904Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +[2024-09-13 14:16:57.906Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +[2024-09-13 14:16:57.907Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +[2024-09-13 14:16:57.908Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +[2024-09-13 14:16:57.916Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +[2024-09-13 14:16:57.917Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +[2024-09-13 14:16:57.918Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +com.hpe.caf.api.worker.DataStoreException: Cannot create data store + at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) + at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) + at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) + at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) + at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) + at io.dropwizard.core.cli.Cli.run(Cli.java:78) + at io.dropwizard.core.Application.run(Application.java:94) + at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) +Caused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration + at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) + at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) + at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) + at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) + ... 7 more +fbad9a[2024-09-13 14:16:55.787Z #007.??? INFO - - ] startup.sh: Running startup scripts... +fbad9a[2024-09-13 14:16:55.792Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +fbad9a[2024-09-13 14:16:55.803Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +fbad9a[2024-09-13 14:16:55.808Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +fbad9a[2024-09-13 14:16:55.815Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +fbad9a[2024-09-13 14:16:55.818Z #007.??? INFO - - ] startup.sh: Startup scripts completed +fbad9a[2024-09-13 14:16:55.820Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +fbad9a14:16:56,363 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +fbad9a14:16:56,364 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +fbad9a14:16:56,365 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +fbad9a14:16:56,366 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +fbad9a14:16:56,374 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +fbad9a14:16:56,374 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +fbad9a14:16:56,387 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 10 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +fbad9a14:16:56,387 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +fbad9a14:16:56,388 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +fbad9a14:16:56,389 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +fbad9a14:16:56,395 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +fbad9a14:16:56,405 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +fbad9a14:16:56,493 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +fbad9a14:16:56,494 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +fbad9a14:16:56,494 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +fbad9a14:16:56,575 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +fbad9a14:16:56,575 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +fbad9a14:16:56,576 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +fbad9a14:16:56,580 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +fbad9a14:16:56,580 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +fbad9a14:16:56,593 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +fbad9a14:16:56,599 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +fbad9a14:16:56,649 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +fbad9a14:16:56,653 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +fbad9a14:16:56,653 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +fbad9a14:16:56,654 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +fbad9a14:16:56,654 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +fbad9a14:16:56,655 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +fbad9a14:16:56,655 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +fbad9a14:16:56,656 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +fbad9a14:16:56,656 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 268 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY +fbad9a +fbad9a[2024-09-13 14:16:56.973Z #478.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +fbad9a[2024-09-13 14:16:57.882Z #478.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +fbad9a[2024-09-13 14:16:57.885Z #478.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +fbad9a[2024-09-13 14:16:57.885Z #478.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +fbad9a[2024-09-13 14:16:57.904Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +fbad9a[2024-09-13 14:16:57.906Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +fbad9a[2024-09-13 14:16:57.907Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +fbad9a[2024-09-13 14:16:57.908Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +fbad9a[2024-09-13 14:16:57.916Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +fbad9a[2024-09-13 14:16:57.917Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +fbad9a[2024-09-13 14:16:57.918Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +fbad9acom.hpe.caf.api.worker.DataStoreException: Cannot create data store +fbad9a at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) +fbad9a at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) +fbad9a at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) +fbad9a at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) +fbad9a at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) +fbad9a at io.dropwizard.core.cli.Cli.run(Cli.java:78) +fbad9a at io.dropwizard.core.Application.run(Application.java:94) +fbad9a at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) +fbad9aCaused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration +fbad9a at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) +fbad9a at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) +fbad9a at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) +fbad9a at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) +fbad9a ... 7 more +[ERROR] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 2803 ms while waiting on url http://localhost:8082/health-check?type=READY +[ERROR] DOCKER> Error occurred during container startup, shutting down... +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Stop and removed container fbad9ac5cf83 after 0 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container 7046f389076d after 0 ms +14:16:59.177 localstack> Localstack runtime received signal 15 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Stop and removed container 55cc951e87ea after 0 ms +14:17:03.526 webdav> ++ _term +14:17:03.526 webdav> ++ echo 'Caught SIGTERM signal!' +14:17:03.526 webdav> ++ kill -TERM '' +14:17:03.526 webdav> Caught SIGTERM signal! +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container c508cf0a571b after 0 ms +[ERROR] DOCKER> I/O Error [[dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 2803 ms while waiting on url http://localhost:8082/health-check?type=READY] +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD FAILURE +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 02:01 min +[INFO] Finished at: 2024-09-13T15:17:04+01:00 +[INFO] ------------------------------------------------------------------------ +[ERROR] Failed to execute goal io.fabric8:docker-maven-plugin:0.43.4:start (start) on project worker-languagedetection-container: I/O Error: [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 2803 ms while waiting on url http://localhost:8082/health-check?type=READY -> [Help 1] +[ERROR] +[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. +[ERROR] Re-run Maven using the -X switch to enable full debug logging. +[ERROR] +[ERROR] For more information about the errors and possible solutions, please read the following articles: +[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException +[INFO] Scanning for projects... +[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] +[INFO] Inspecting build with total of 1 modules... +[INFO] Installing Nexus Staging features: +[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin +[INFO] +[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- +[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT +[INFO] from pom.xml +[INFO] --------------------------------[ pom ]--------------------------------- +[INFO] +[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] +[INFO] +[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- +[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target +[INFO] +[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- +[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed +[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed +[INFO] +[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- +[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true +[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container +[INFO] Git info extracted in 330ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' +[INFO] +[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- +[INFO] Using plugin classloader, includes GMavenPlus and project classpath. +[INFO] Using Groovy 3.0.19 to perform execute. +[INFO] +[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- +[INFO] Updating license headers... +[INFO] +[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- +[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar +[INFO] +[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- +[INFO] Copying 2 resources from src/main/config to target/config-files +[INFO] +[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- +[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox +[INFO] DOCKER> +[INFO] DOCKER> ---> 6fd955f66c23 +[INFO] DOCKER> Step 2/4 : COPY maven /config/ +[INFO] DOCKER> +[INFO] DOCKER> ---> 282f83c1f492 +[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Running in ad00220a5116 +[INFO] DOCKER> ---> Removed intermediate container ad00220a5116 +[INFO] DOCKER> ---> 9c36e3347e26 +[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Running in ad91ac401653 +[INFO] DOCKER> ---> Removed intermediate container ad91ac401653 +[INFO] DOCKER> ---> 29043a6f2a15 +[INFO] DOCKER> Successfully built 29043a6f2a15 +[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:29043 +[INFO] DOCKER> worker-languagedetection-container-test-config:5.2.0-SNAPSHOT: Removed dangling image sha256:4a9eb +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/sqs-worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/sqs-worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Created docker-build.tar in 1 minute and 13 seconds +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 +[INFO] DOCKER> +[INFO] DOCKER> ---> 0f51baaf46f5 +[INFO] DOCKER> Step 2/4 : COPY maven /maven/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 91e7f56ef8cf +[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 002fc83963fa +[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 2adee4e4f048 +[INFO] DOCKER> Successfully built 2adee4e4f048 +[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Built image sha256:2adee +[INFO] +[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- +[INFO] Changes detected - recompiling the module! :source +[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes +[INFO] +[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- +[INFO] +[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- +[INFO] Not executing Javadoc as the project is not a Java classpath-capable package +[INFO] +[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container 60581ef34d50 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. +14:19:44.197 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf +14:19:44.198 webdav> + getent passwd 33 +14:19:44.199 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin +14:19:44.199 webdav> + useradd -r webdav -u 33 -g 33 +14:19:44.241 webdav> useradd: UID 33 is not unique +14:19:44.242 webdav> + mkdir -p /srv/common/webdav +14:19:44.243 webdav> + chown 33 /srv/common/webdav +14:19:44.243 webdav> + trap _term SIGTERM +14:19:44.244 webdav> + pid=12 +14:19:44.244 webdav> + wait 12 +14:19:44.254 webdav> + /usr/sbin/apache2 -D FOREGROUND +14:19:44.254 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +14:19:44.256 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +14:19:44.257 webdav> [Fri Sep 13 14:19:44.257093 2024] [mpm_event:notice] [pid 12:tid 140048542439296] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations +14:19:44.257 webdav> [Fri Sep 13 14:19:44.257168 2024] [core:notice] [pid 12:tid 140048542439296] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' +14:19:44.326 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:14:19:44 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 90 ms +[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Start container 781b91173a81 +14:19:45.614 localstack> +14:19:45.614 localstack> LocalStack version: 3.7.3.dev18 +14:19:45.614 localstack> LocalStack build date: 2024-09-13 +14:19:45.614 localstack> LocalStack build git hash: 55e2d9fd6 +14:19:45.614 localstack> +14:19:46.063 localstack> Ready. +[INFO] DOCKER> Pattern 'Ready.' matched for container 781b91173a81 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Waited on log out 'Ready.' 1510 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container 58e2968aec93 +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Start container 30c4feb98d84 +14:19:47.397 sqs-worker-languagedetection> [2024-09-13 14:19:47.396Z #008.??? INFO - - ] startup.sh: Running startup scripts... +14:19:47.400 sqs-worker-languagedetection> [2024-09-13 14:19:47.399Z #008.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. +14:19:47.407 sqs-worker-languagedetection> [2024-09-13 14:19:47.406Z #00F.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +14:19:47.409 sqs-worker-languagedetection> [2024-09-13 14:19:47.408Z #008.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +14:19:47.419 sqs-worker-languagedetection> [2024-09-13 14:19:47.417Z #017.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +14:19:47.421 sqs-worker-languagedetection> [2024-09-13 14:19:47.420Z #008.??? INFO - - ] startup.sh: Startup scripts completed +14:19:47.423 sqs-worker-languagedetection> [2024-09-13 14:19:47.422Z #008.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +14:19:47.727 sqs-worker-languagedetection> 14:19:47,556 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +14:19:47.727 sqs-worker-languagedetection> 14:19:47,557 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +14:19:47.727 sqs-worker-languagedetection> 14:19:47,557 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +14:19:47.727 sqs-worker-languagedetection> 14:19:47,558 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +14:19:47.727 sqs-worker-languagedetection> 14:19:47,563 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +14:19:47.727 sqs-worker-languagedetection> 14:19:47,563 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +14:19:47.727 sqs-worker-languagedetection> 14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +14:19:47.727 sqs-worker-languagedetection> 14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +14:19:47.727 sqs-worker-languagedetection> 14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +14:19:47.727 sqs-worker-languagedetection> 14:19:47,573 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +14:19:47.727 sqs-worker-languagedetection> 14:19:47,577 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +14:19:47.727 sqs-worker-languagedetection> 14:19:47,582 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +14:19:47.727 sqs-worker-languagedetection> 14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +14:19:47.727 sqs-worker-languagedetection> 14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +14:19:47.727 sqs-worker-languagedetection> 14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +14:19:47.727 sqs-worker-languagedetection> 14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +14:19:47.727 sqs-worker-languagedetection> 14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +14:19:47.727 sqs-worker-languagedetection> 14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +14:19:47.727 sqs-worker-languagedetection> 14:19:47,677 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +14:19:47.727 sqs-worker-languagedetection> 14:19:47,677 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +14:19:47.727 sqs-worker-languagedetection> 14:19:47,684 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +14:19:47.727 sqs-worker-languagedetection> 14:19:47,687 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +14:19:47.727 sqs-worker-languagedetection> 14:19:47,715 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +14:19:47.727 sqs-worker-languagedetection> 14:19:47,718 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +14:19:47.727 sqs-worker-languagedetection> 14:19:47,718 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +14:19:47.727 sqs-worker-languagedetection> 14:19:47,718 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +14:19:47.727 sqs-worker-languagedetection> 14:19:47,719 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +14:19:47.727 sqs-worker-languagedetection> 14:19:47,719 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +14:19:47.727 sqs-worker-languagedetection> 14:19:47,719 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +14:19:47.727 sqs-worker-languagedetection> 14:19:47,720 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +14:19:47.727 sqs-worker-languagedetection> 14:19:47,720 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 148 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY +14:19:47.727 sqs-worker-languagedetection> +14:19:47.935 sqs-worker-languagedetection> [2024-09-13 14:19:47.915Z #da0.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +14:19:48.601 sqs-worker-languagedetection> [2024-09-13 14:19:48.600Z #da0.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +14:19:48.602 sqs-worker-languagedetection> [2024-09-13 14:19:48.601Z #da0.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +14:19:48.602 sqs-worker-languagedetection> [2024-09-13 14:19:48.602Z #da0.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +14:19:48.614 sqs-worker-languagedetection> [2024-09-13 14:19:48.614Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +14:19:48.616 sqs-worker-languagedetection> [2024-09-13 14:19:48.616Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +14:19:48.617 sqs-worker-languagedetection> [2024-09-13 14:19:48.617Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +14:19:48.618 sqs-worker-languagedetection> [2024-09-13 14:19:48.618Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +14:19:48.625 sqs-worker-languagedetection> [2024-09-13 14:19:48.625Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +14:19:48.626 sqs-worker-languagedetection> [2024-09-13 14:19:48.626Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +14:19:48.628 sqs-worker-languagedetection> [2024-09-13 14:19:48.628Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +14:19:48.631 sqs-worker-languagedetection> com.hpe.caf.api.worker.DataStoreException: Cannot create data store +14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) +14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) +14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) +14:19:48.631 sqs-worker-languagedetection> at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) +14:19:48.631 sqs-worker-languagedetection> at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) +14:19:48.631 sqs-worker-languagedetection> at io.dropwizard.core.cli.Cli.run(Cli.java:78) +14:19:48.631 sqs-worker-languagedetection> at io.dropwizard.core.Application.run(Application.java:94) +14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) +14:19:48.631 sqs-worker-languagedetection> Caused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration +14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) +14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) +14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) +14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) +14:19:48.631 sqs-worker-languagedetection> ... 7 more +[2024-09-13 14:19:47.396Z #008.??? INFO - - ] startup.sh: Running startup scripts... +[2024-09-13 14:19:47.399Z #008.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +[2024-09-13 14:19:47.406Z #00F.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +[2024-09-13 14:19:47.408Z #008.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +[2024-09-13 14:19:47.417Z #017.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +[2024-09-13 14:19:47.420Z #008.??? INFO - - ] startup.sh: Startup scripts completed +[2024-09-13 14:19:47.422Z #008.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +14:19:47,556 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +14:19:47,557 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +14:19:47,557 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +14:19:47,558 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +14:19:47,563 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +14:19:47,563 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +14:19:47,573 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +14:19:47,577 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +14:19:47,582 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +14:19:47,677 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +14:19:47,677 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +14:19:47,684 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +14:19:47,687 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +14:19:47,715 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +14:19:47,718 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +14:19:47,718 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +14:19:47,718 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +14:19:47,719 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +14:19:47,719 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +14:19:47,719 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +14:19:47,720 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +14:19:47,720 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 148 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +[2024-09-13 14:19:47.915Z #da0.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +[2024-09-13 14:19:48.600Z #da0.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +[2024-09-13 14:19:48.601Z #da0.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +[2024-09-13 14:19:48.602Z #da0.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +[2024-09-13 14:19:48.614Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +[2024-09-13 14:19:48.616Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +[2024-09-13 14:19:48.617Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +[2024-09-13 14:19:48.618Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +[2024-09-13 14:19:48.625Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +[2024-09-13 14:19:48.626Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +[2024-09-13 14:19:48.628Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +com.hpe.caf.api.worker.DataStoreException: Cannot create data store + at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) + at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) + at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) + at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) + at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) + at io.dropwizard.core.cli.Cli.run(Cli.java:78) + at io.dropwizard.core.Application.run(Application.java:94) + at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) +Caused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration + at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) + at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) + at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) + at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) + ... 7 more +30c4fe[2024-09-13 14:19:47.396Z #008.??? INFO - - ] startup.sh: Running startup scripts... +30c4fe[2024-09-13 14:19:47.399Z #008.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +30c4fe[2024-09-13 14:19:47.406Z #00F.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +30c4fe[2024-09-13 14:19:47.408Z #008.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +30c4fe[2024-09-13 14:19:47.417Z #017.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +30c4fe[2024-09-13 14:19:47.420Z #008.??? INFO - - ] startup.sh: Startup scripts completed +30c4fe[2024-09-13 14:19:47.422Z #008.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +30c4fe14:19:47,556 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +30c4fe14:19:47,557 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +30c4fe14:19:47,557 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +30c4fe14:19:47,558 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +30c4fe14:19:47,563 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +30c4fe14:19:47,563 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +30c4fe14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +30c4fe14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +30c4fe14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +30c4fe14:19:47,573 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +30c4fe14:19:47,577 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +30c4fe14:19:47,582 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +30c4fe14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +30c4fe14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +30c4fe14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +30c4fe14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +30c4fe14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +30c4fe14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +30c4fe14:19:47,677 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +30c4fe14:19:47,677 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +30c4fe14:19:47,684 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +30c4fe14:19:47,687 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +30c4fe14:19:47,715 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +30c4fe14:19:47,718 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +30c4fe14:19:47,718 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +30c4fe14:19:47,718 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +30c4fe14:19:47,719 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +30c4fe14:19:47,719 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +30c4fe14:19:47,719 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +30c4fe14:19:47,720 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +30c4fe14:19:47,720 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 148 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY +30c4fe +30c4fe[2024-09-13 14:19:47.915Z #da0.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +30c4fe[2024-09-13 14:19:48.600Z #da0.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +30c4fe[2024-09-13 14:19:48.601Z #da0.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +30c4fe[2024-09-13 14:19:48.602Z #da0.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +30c4fe[2024-09-13 14:19:48.614Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +30c4fe[2024-09-13 14:19:48.616Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +30c4fe[2024-09-13 14:19:48.617Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +30c4fe[2024-09-13 14:19:48.618Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +30c4fe[2024-09-13 14:19:48.625Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +30c4fe[2024-09-13 14:19:48.626Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +30c4fe[2024-09-13 14:19:48.628Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +30c4fecom.hpe.caf.api.worker.DataStoreException: Cannot create data store +30c4fe at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) +30c4fe at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) +30c4fe at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) +30c4fe at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) +30c4fe at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) +30c4fe at io.dropwizard.core.cli.Cli.run(Cli.java:78) +30c4fe at io.dropwizard.core.Application.run(Application.java:94) +30c4fe at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) +30c4feCaused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration +30c4fe at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) +30c4fe at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) +30c4fe at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) +30c4fe at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) +30c4fe ... 7 more +[ERROR] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 1960 ms while waiting on url http://localhost:8082/health-check?type=READY +[ERROR] DOCKER> Error occurred during container startup, shutting down... +[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Stop and removed container 30c4feb98d84 after 0 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container 58e2968aec93 after 0 ms +14:19:49.971 localstack> Localstack runtime received signal 15 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Stop and removed container 781b91173a81 after 0 ms +14:19:52.200 webdav> ++ _term +14:19:52.200 webdav> ++ echo 'Caught SIGTERM signal!' +14:19:52.200 webdav> ++ kill -TERM '' +14:19:52.200 webdav> Caught SIGTERM signal! +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container 60581ef34d50 after 0 ms +[ERROR] DOCKER> I/O Error [[dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 1960 ms while waiting on url http://localhost:8082/health-check?type=READY] +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD FAILURE +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 01:49 min +[INFO] Finished at: 2024-09-13T15:19:53+01:00 +[INFO] ------------------------------------------------------------------------ +[ERROR] Failed to execute goal io.fabric8:docker-maven-plugin:0.43.4:start (start) on project worker-languagedetection-container: I/O Error: [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 1960 ms while waiting on url http://localhost:8082/health-check?type=READY -> [Help 1] +[ERROR] +[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. +[ERROR] Re-run Maven using the -X switch to enable full debug logging. +[ERROR] +[ERROR] For more information about the errors and possible solutions, please read the following articles: +[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException +[INFO] Scanning for projects... +[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] +[INFO] Inspecting build with total of 1 modules... +[INFO] Installing Nexus Staging features: +[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin +[INFO] +[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- +[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT +[INFO] from pom.xml +[INFO] --------------------------------[ pom ]--------------------------------- +[INFO] +[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest] +[INFO] +[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- +[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target +[INFO] +[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- +[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed +[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed +[INFO] +[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- +[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true +[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container +[INFO] Git info extracted in 283ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' +[INFO] +[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- +[INFO] Using plugin classloader, includes GMavenPlus and project classpath. +[INFO] Using Groovy 3.0.19 to perform execute. +[INFO] +[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- +[INFO] Updating license headers... +[INFO] +[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- +[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar +[INFO] +[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- +[INFO] Copying 2 resources from src/main/config to target/config-files +[INFO] +[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- +[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox +[INFO] DOCKER> +[INFO] DOCKER> ---> 6fd955f66c23 +[INFO] DOCKER> Step 2/4 : COPY maven /config/ +[INFO] DOCKER> +[INFO] DOCKER> ---> efe137734a0a +[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Running in d5672e75d4b7 +[INFO] DOCKER> ---> Removed intermediate container d5672e75d4b7 +[INFO] DOCKER> ---> fb3dd21b80b4 +[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Running in caeff3bd686d +[INFO] DOCKER> ---> Removed intermediate container caeff3bd686d +[INFO] DOCKER> ---> e4f3012b2a56 +[INFO] DOCKER> Successfully built e4f3012b2a56 +[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:e4f30 +[INFO] DOCKER> worker-languagedetection-container-test-config:5.2.0-SNAPSHOT: Removed dangling image sha256:29043 +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Created docker-build.tar in 1 minute and 15 seconds +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 +[INFO] DOCKER> +[INFO] DOCKER> ---> 0f51baaf46f5 +[INFO] DOCKER> Step 2/4 : COPY maven /maven/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 91e7f56ef8cf +[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 002fc83963fa +[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 2adee4e4f048 +[INFO] DOCKER> Successfully built 2adee4e4f048 +[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Built image sha256:2adee +[INFO] +[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- +[INFO] Changes detected - recompiling the module! :source +[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes +[INFO] +[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- +[INFO] +[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- +[INFO] Not executing Javadoc as the project is not a Java classpath-capable package +[INFO] +[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container d2f76f5cc49c +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. +14:24:37.068 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf +14:24:37.070 webdav> + getent passwd 33 +14:24:37.071 webdav> + useradd -r webdav -u 33 -g 33 +14:24:37.071 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin +14:24:37.122 webdav> useradd: UID 33 is not unique +14:24:37.123 webdav> + mkdir -p /srv/common/webdav +14:24:37.123 webdav> + chown 33 /srv/common/webdav +14:24:37.124 webdav> + trap _term SIGTERM +14:24:37.124 webdav> + pid=12 +14:24:37.124 webdav> + wait 12 +14:24:37.125 webdav> + /usr/sbin/apache2 -D FOREGROUND +14:24:37.138 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +14:24:37.142 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +14:24:37.144 webdav> [Fri Sep 13 14:24:37.144627 2024] [mpm_event:notice] [pid 12:tid 140672417593216] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations +14:24:37.144 webdav> [Fri Sep 13 14:24:37.144683 2024] [core:notice] [pid 12:tid 140672417593216] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' +14:24:37.208 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:14:24:37 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 104 ms +[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Start container 63496b4462da +14:24:38.460 localstack> +14:24:38.460 localstack> LocalStack version: 3.7.3.dev19 +14:24:38.460 localstack> LocalStack build date: 2024-09-13 +14:24:38.460 localstack> LocalStack build git hash: cb81582d8 +14:24:38.460 localstack> +14:24:38.971 localstack> Ready. +[INFO] DOCKER> Pattern 'Ready.' matched for container 63496b4462da +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Waited on log out 'Ready.' 1508 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container 6638dad2c17a +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Start container 477d5bd63929 +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. +14:24:40.253 worker-languagedetection> [2024-09-13 14:24:40.252Z #007.??? INFO - - ] startup.sh: Running startup scripts... +14:24:40.257 worker-languagedetection> [2024-09-13 14:24:40.256Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +14:24:40.267 worker-languagedetection> [2024-09-13 14:24:40.265Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +14:24:40.270 worker-languagedetection> [2024-09-13 14:24:40.268Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +14:24:40.283 worker-languagedetection> [2024-09-13 14:24:40.281Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +14:24:40.286 worker-languagedetection> [2024-09-13 14:24:40.284Z #007.??? INFO - - ] startup.sh: Startup scripts completed +14:24:40.289 worker-languagedetection> [2024-09-13 14:24:40.288Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +14:24:40.707 worker-languagedetection> 14:24:40,466 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +14:24:40.707 worker-languagedetection> 14:24:40,469 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +14:24:40.707 worker-languagedetection> 14:24:40,469 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +14:24:40.707 worker-languagedetection> 14:24:40,471 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +14:24:40.707 worker-languagedetection> 14:24:40,479 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +14:24:40.707 worker-languagedetection> 14:24:40,479 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +14:24:40.707 worker-languagedetection> 14:24:40,492 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 9 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +14:24:40.707 worker-languagedetection> 14:24:40,492 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +14:24:40.707 worker-languagedetection> 14:24:40,492 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +14:24:40.707 worker-languagedetection> 14:24:40,493 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +14:24:40.707 worker-languagedetection> 14:24:40,499 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +14:24:40.707 worker-languagedetection> 14:24:40,506 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +14:24:40.707 worker-languagedetection> 14:24:40,567 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +14:24:40.707 worker-languagedetection> 14:24:40,567 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +14:24:40.707 worker-languagedetection> 14:24:40,567 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +14:24:40.707 worker-languagedetection> 14:24:40,631 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +14:24:40.707 worker-languagedetection> 14:24:40,631 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +14:24:40.707 worker-languagedetection> 14:24:40,631 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +14:24:40.707 worker-languagedetection> 14:24:40,637 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +14:24:40.707 worker-languagedetection> 14:24:40,637 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +14:24:40.707 worker-languagedetection> 14:24:40,647 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +14:24:40.707 worker-languagedetection> 14:24:40,651 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +14:24:40.707 worker-languagedetection> 14:24:40,689 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +14:24:40.707 worker-languagedetection> 14:24:40,694 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +14:24:40.707 worker-languagedetection> 14:24:40,694 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +14:24:40.707 worker-languagedetection> 14:24:40,694 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +14:24:40.707 worker-languagedetection> 14:24:40,695 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +14:24:40.707 worker-languagedetection> 14:24:40,695 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +14:24:40.707 worker-languagedetection> 14:24:40,696 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +14:24:40.707 worker-languagedetection> 14:24:40,696 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +14:24:40.707 worker-languagedetection> 14:24:40,696 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 204 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY +14:24:40.707 worker-languagedetection> +14:24:40.979 worker-languagedetection> [2024-09-13 14:24:40.957Z #ad5.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +14:24:41.809 worker-languagedetection> [2024-09-13 14:24:41.808Z #ad5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +14:24:41.810 worker-languagedetection> [2024-09-13 14:24:41.810Z #ad5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +14:24:41.812 worker-languagedetection> [2024-09-13 14:24:41.811Z #ad5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +14:24:41.826 worker-languagedetection> [2024-09-13 14:24:41.826Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +14:24:41.829 worker-languagedetection> [2024-09-13 14:24:41.829Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +14:24:41.831 worker-languagedetection> [2024-09-13 14:24:41.831Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +14:24:41.833 worker-languagedetection> [2024-09-13 14:24:41.833Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +14:24:41.842 worker-languagedetection> [2024-09-13 14:24:41.841Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +14:24:41.843 worker-languagedetection> [2024-09-13 14:24:41.843Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +14:24:41.845 worker-languagedetection> [2024-09-13 14:24:41.844Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +14:24:41.904 worker-languagedetection> [2024-09-13 14:24:41.903Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider +14:24:41.952 worker-languagedetection> [2024-09-13 14:24:41.946Z #ad5.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} +14:24:42.092 worker-languagedetection> [2024-09-13 14:24:42.092Z #ad5.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +14:24:42.094 worker-languagedetection> [2024-09-13 14:24:42.092Z #ad5.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +14:24:42.095 worker-languagedetection> [2024-09-13 14:24:42.095Z #ad5.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS +14:24:42.105 worker-languagedetection> [2024-09-13 14:24:42.105Z #ad5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. +14:24:42.125 worker-languagedetection> [2024-09-13 14:24:42.125Z #ad5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE +14:24:42.128 worker-languagedetection> [2024-09-13 14:24:42.128Z #ad5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY +14:24:42.130 worker-languagedetection> [2024-09-13 14:24:42.129Z #ad5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY +14:24:42.130 worker-languagedetection> [2024-09-13 14:24:42.130Z #ad5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY +14:24:42.140 worker-languagedetection> [2024-09-13 14:24:42.139Z #ad5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE +14:24:42.145 worker-languagedetection> [2024-09-13 14:24:42.145Z #ad5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY +14:24:42.146 worker-languagedetection> [2024-09-13 14:24:42.146Z #ad5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE +14:24:42.148 worker-languagedetection> +14:24:42.533 worker-languagedetection> [2024-09-13 14:24:42.532Z #ad5.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} +14:24:42.535 worker-languagedetection> [2024-09-13 14:24:42.534Z #ad5.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@2d5a1588{/,null,AVAILABLE} +14:24:42.538 worker-languagedetection> [2024-09-13 14:24:42.537Z #ad5.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} +14:24:42.538 worker-languagedetection> [2024-09-13 14:24:42.538Z #ad5.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@1c61eda5{/,null,AVAILABLE} +14:24:42.546 worker-languagedetection> [2024-09-13 14:24:42.546Z #ad5.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +14:24:42.548 worker-languagedetection> [2024-09-13 14:24:42.547Z #ad5.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +14:24:42.549 worker-languagedetection> [2024-09-13 14:24:42.549Z #ad5.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@517a2b0{STARTING}[11.0.23,sto=30000] @2256ms +14:24:42.620 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 12 +14:24:43.116 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:43.628 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:24:44.133 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:44.647 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 +14:24:45.156 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:24:45.662 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:46.166 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:46.675 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:47.180 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:47.688 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:48.192 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:48.697 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:49.201 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:49.707 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:50.212 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:50 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:50.716 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:50 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:51.225 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:51 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:51.731 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:51 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:52.239 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:52 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:52.743 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:52 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:53.250 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:53 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:53.759 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:53 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:54.264 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:54 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:24:54.770 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:54 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:24:55.275 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:55 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:55.782 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:55 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:56.286 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:56 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:56.799 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:56 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:24:57.141 worker-languagedetection> [2024-09-13 14:24:57.141Z #ad5.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE +14:24:57.306 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:57 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:24:57.810 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:57 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:24:58.250 worker-languagedetection> [2024-09-13 14:24:58.250Z #ad5.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE +14:24:58.250 worker-languagedetection> [2024-09-13 14:24:58.249Z #ad5.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE +14:24:58.251 worker-languagedetection> [2024-09-13 14:24:58.250Z #ad5.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY +14:24:58.255 worker-languagedetection> [2024-09-13 14:24:58.254Z #ad5.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY +14:24:58.255 worker-languagedetection> [2024-09-13 14:24:58.254Z #ad5.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY +14:24:58.256 worker-languagedetection> [2024-09-13 14:24:58.255Z #ad5.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waited on url http://localhost:8082/health-check?type=READY 18042 ms +[INFO] +[INFO] --- failsafe:3.1.2:integration-test (sqs-implementation-testing) @ worker-languagedetection-container --- +14:24:58.317 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:58 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider +[INFO] +[INFO] ------------------------------------------------------- +[INFO] T E S T S +[INFO] ------------------------------------------------------- +[INFO] Running com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT +15:24:59,180 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +15:24:59,184 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - No custom configurators were discovered as a service. +15:24:59,184 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +15:24:59,187 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +15:24:59,197 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +15:24:59,198 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +15:24:59,210 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 12 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +15:24:59,210 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +15:24:59,211 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +15:24:59,213 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +15:24:59,218 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] +15:24:59,236 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@b2c9a9c - URL [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +15:24:59,338 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +15:24:59,338 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +15:24:59,338 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +15:24:59,438 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +15:24:59,438 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +15:24:59,438 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +15:24:59,449 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +15:24:59,449 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +15:24:59,464 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +15:24:59,467 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +15:24:59,564 |-INFO in ch.qos.logback.classic.pattern.DateConverter@fa4c865 - Setting zoneId to "UTC" +15:24:59,568 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +15:24:59,568 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +15:24:59,569 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +15:24:59,570 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +15:24:59,570 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +15:24:59,570 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@3bd82cf5 - End of configuration. +15:24:59,571 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@544fa968 - Registering current configuration as safe fallback point +15:24:59,571 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 360 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_field_multi_lang_en_fr_ger.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_multi_datasource.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_single_datasource.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_invalid.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple_multi.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_english.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_french.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_german.yaml.testcase + +=============== Starting test Item single_lang_french.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_french.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_french.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_french.yaml +Description: null +Associated tickets: null +Comments: single_lang_french.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 1 +Number of successful test cases (all test instances passes): 1 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid_combined.yaml +================================================================================ +14:25:10.343 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:25:10 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 2 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 2 +Number of successful test cases (all test instances passes): 2 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 3 +Number of successful test cases (all test instances passes): 3 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_simple_multi.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_simple_multi.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODE_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_FR_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_GER_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_simple_multi.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_simple_multi.yaml +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 4 +Number of successful test cases (all test instances passes): 4 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown_split.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 5 +Number of successful test cases (all test instances passes): 5 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_combined.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 6 +Number of successful test cases (all test instances passes): 6 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 7 +Number of successful test cases (all test instances passes): 7 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid_split.yaml +================================================================================ +14:25:40.394 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:25:40 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 0 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 8 +Number of successful test cases (all test instances passes): 8 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item single_lang_english.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_english.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_english.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_english.yaml +Description: null +Associated tickets: null +Comments: single_lang_english.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 9 +Number of successful test cases (all test instances passes): 9 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_lang_single_datasource.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_lang_single_datasource.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_lang_single_datasource.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_lang_single_datasource.yaml +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 10 +Number of successful test cases (all test instances passes): 10 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_field_multi_lang_en_fr_ger.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_field_multi_lang_en_fr_ger.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODE_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_FR_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_GER_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_field_multi_lang_en_fr_ger.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 11 +Number of successful test cases (all test instances passes): 11 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang_combined.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 12 +Number of successful test cases (all test instances passes): 12 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 13 +Number of successful test cases (all test instances passes): 13 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang_split.yaml +================================================================================ +14:26:10.458 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:26:10 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 14 +Number of successful test cases (all test instances passes): 14 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== +14:26:13.603 worker-languagedetection> [2024-09-13 14:26:13.603Z #ad5.054 ERROR - - ] c.h.c.w.l.LanguageDetectionWorker: Failed to read result format specified. + +=============== Starting test Item resultFormat_invalid.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_invalid.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_invalid.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_invalid.yaml +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 15 +Number of successful test cases (all test instances passes): 15 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown_combined.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 16 +Number of successful test cases (all test instances passes): 16 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_simple.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_simple.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_simple.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_simple.yaml +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 17 +Number of successful test cases (all test instances passes): 17 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_lang_multi_datasource.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_lang_multi_datasource.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_lang_multi_datasource.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 18 +Number of successful test cases (all test instances passes): 18 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_split.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_multi_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 19 +Number of successful test cases (all test instances passes): 19 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item single_lang_german.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_german.yaml +================================================================================ +14:26:40.507 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:26:40 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 0 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_multi_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_german.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_german.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_german.yaml +Description: null +Associated tickets: null +Comments: single_lang_german.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_german.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_german.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 20 +Number of successful test cases (all test instances passes): 20 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_multi_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_german.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS +Item with id single_lang_german.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_german.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_german.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 21 +Number of successful test cases (all test instances passes): 21 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== +[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 110.1 s -- in com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT +[INFO] +[INFO] Results: +[INFO] +[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0 +[INFO] +[INFO] +[INFO] --- failsafe:3.1.2:integration-test (rabbit-implementation-testing) @ worker-languagedetection-container --- +[INFO] Tests are skipped. +[INFO] +[INFO] --- docker:0.43.4:stop (stop) @ worker-languagedetection-container --- +14:26:49.821 worker-languagedetection> [2024-09-13 14:26:49.820Z #ad5.033 INFO - - ] o.eclipse.jetty.server.Server: Stopped Server@517a2b0{STOPPING}[11.0.23,sto=30000] +14:26:49.822 worker-languagedetection> [2024-09-13 14:26:49.822Z #ad5.033 INFO - - ] o.eclipse.jetty.server.Server: Shutdown Server@517a2b0{STOPPING}[11.0.23,sto=30000] +14:26:49.827 worker-languagedetection> [2024-09-13 14:26:49.826Z #ad5.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +14:26:49.828 worker-languagedetection> [2024-09-13 14:26:49.827Z #ad5.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +14:26:49.829 worker-languagedetection> [2024-09-13 14:26:49.829Z #ad5.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@1c61eda5{/,null,STOPPED} +14:26:49.839 worker-languagedetection> [2024-09-13 14:26:49.839Z #ad5.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@2d5a1588{/,null,STOPPED} +14:26:49.842 worker-languagedetection> [2024-09-13 14:26:49.841Z #ad5.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stop requested, allowing in-progress tasks to complete. +14:26:49.842 worker-languagedetection> [2024-09-13 14:26:49.842Z #ad5.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stopped. +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Stop and removed container 477d5bd63929 after 0 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container 6638dad2c17a after 0 ms +14:26:51.444 localstack> Localstack runtime received signal 15 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Stop and removed container 63496b4462da after 0 ms +14:26:57.457 webdav> Caught SIGTERM signal! +14:26:57.457 webdav> ++ _term +14:26:57.457 webdav> ++ echo 'Caught SIGTERM signal!' +14:26:57.457 webdav> ++ kill -TERM '' +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container d2f76f5cc49c after 0 ms +[INFO] +[INFO] --- license:4.3:check (check-license-headers) @ worker-languagedetection-container --- +[INFO] Checking licenses... +[INFO] +[INFO] --- dependency:3.6.0:analyze-only (check-dependencies) @ worker-languagedetection-container --- +[INFO] Skipping pom project +[INFO] +[INFO] --- duplicate-finder:2.0.1:check (deepcheck-dependencies) @ worker-languagedetection-container --- +[INFO] Ignoring POM project! +[INFO] +[INFO] --- failsafe:3.1.2:verify (sqs-implementation-testing) @ worker-languagedetection-container --- +[INFO] +[INFO] --- failsafe:3.1.2:verify (rabbit-implementation-testing) @ worker-languagedetection-container --- +[INFO] Tests are skipped. +[INFO] +[INFO] --- install:3.1.1:install (default-install) @ worker-languagedetection-container --- +[INFO] Skipping artifact installation +[INFO] +[INFO] --- docker-versions:1.0.0-29:depopulate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 05:20 min +[INFO] Finished at: 2024-09-13T15:27:00+01:00 +[INFO] ------------------------------------------------------------------------ +[INFO] Scanning for projects... +[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] +[INFO] Inspecting build with total of 1 modules... +[INFO] Installing Nexus Staging features: +[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin +[INFO] +[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- +[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT +[INFO] from pom.xml +[INFO] --------------------------------[ pom ]--------------------------------- +[INFO] +[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest] +[INFO] +[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- +[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target +[INFO] +[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- +[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed +[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed +[INFO] +[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- +[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true +[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container +[INFO] Git info extracted in 335ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' +[INFO] +[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- +[INFO] Using plugin classloader, includes GMavenPlus and project classpath. +[INFO] Using Groovy 3.0.19 to perform execute. +[INFO] +[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- +[INFO] Updating license headers... +[INFO] +[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- +[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar +[INFO] +[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- +[INFO] Copying 2 resources from src/main/config to target/config-files +[INFO] +[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- +[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox +[INFO] DOCKER> +[INFO] DOCKER> ---> 6fd955f66c23 +[INFO] DOCKER> Step 2/4 : COPY maven /config/ +[INFO] DOCKER> +[INFO] DOCKER> ---> 8be7948e3c01 +[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Running in 79ab90ac440d +[INFO] DOCKER> ---> Removed intermediate container 79ab90ac440d +[INFO] DOCKER> ---> ef52e370b90f +[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Running in d84db6d20e3a +[INFO] DOCKER> ---> Removed intermediate container d84db6d20e3a +[INFO] DOCKER> ---> 1f97ff59e5f4 +[INFO] DOCKER> Successfully built 1f97ff59e5f4 +[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:1f97f +[INFO] DOCKER> worker-languagedetection-container-test-config:5.2.0-SNAPSHOT: Removed dangling image sha256:e4f30 +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Created docker-build.tar in 1 minute and 3 seconds +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 +[INFO] DOCKER> +[INFO] DOCKER> ---> 0f51baaf46f5 +[INFO] DOCKER> Step 2/4 : COPY maven /maven/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 91e7f56ef8cf +[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 002fc83963fa +[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 2adee4e4f048 +[INFO] DOCKER> Successfully built 2adee4e4f048 +[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Built image sha256:2adee +[INFO] +[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- +[INFO] Changes detected - recompiling the module! :source +[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes +[INFO] +[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- +[INFO] +[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- +[INFO] Not executing Javadoc as the project is not a Java classpath-capable package +[INFO] +[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- +[ERROR] DOCKER> Error occurred during container startup, shutting down... +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD FAILURE +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 01:34 min +[INFO] Finished at: 2024-09-13T15:40:21+01:00 +[INFO] ------------------------------------------------------------------------ +[ERROR] Failed to execute goal io.fabric8:docker-maven-plugin:0.43.4:start (start) on project worker-languagedetection-container: Execution start of goal io.fabric8:docker-maven-plugin:0.43.4:start failed: Cannot resolve image dependencies for start order +[ERROR] Unresolved images: +[ERROR] * worker-languagedetection depends on config,webdav,sqs +[ERROR] +[ERROR] -> [Help 1] +[ERROR] +[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. +[ERROR] Re-run Maven using the -X switch to enable full debug logging. +[ERROR] +[ERROR] For more information about the errors and possible solutions, please read the following articles: +[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException +[INFO] Scanning for projects... +[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] +[INFO] Inspecting build with total of 1 modules... +[INFO] Installing Nexus Staging features: +[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin +[INFO] +[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- +[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT +[INFO] from pom.xml +[INFO] --------------------------------[ pom ]--------------------------------- +[INFO] +[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] +[INFO] +[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- +[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target +[INFO] +[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- +[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed +[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed +[INFO] +[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- +[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true +[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container +[INFO] Git info extracted in 262ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' +[INFO] +[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- +[INFO] Using plugin classloader, includes GMavenPlus and project classpath. +[INFO] Using Groovy 3.0.19 to perform execute. +[INFO] +[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- +[INFO] Updating license headers... +[INFO] +[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- +[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar +[INFO] +[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- +[INFO] Copying 2 resources from src/main/config to target/config-files +[INFO] +[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- +[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox +[INFO] DOCKER> +[INFO] DOCKER> ---> 6fd955f66c23 +[INFO] DOCKER> Step 2/4 : COPY maven /config/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 8be7948e3c01 +[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> ef52e370b90f +[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 1f97ff59e5f4 +[INFO] DOCKER> Successfully built 1f97ff59e5f4 +[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:1f97f +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Created docker-build.tar in 1 minute and 11 seconds +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 +[INFO] DOCKER> +[INFO] DOCKER> ---> 0f51baaf46f5 +[INFO] DOCKER> Step 2/4 : COPY maven /maven/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 91e7f56ef8cf +[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 002fc83963fa +[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 2adee4e4f048 +[INFO] DOCKER> Successfully built 2adee4e4f048 +[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Built image sha256:2adee +[INFO] +[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- +[INFO] Changes detected - recompiling the module! :source +[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes +[INFO] +[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- +[INFO] +[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- +[INFO] Not executing Javadoc as the project is not a Java classpath-capable package +[INFO] +[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container cfb1d6e99828 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. +14:43:13.902 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf +14:43:13.917 webdav> + getent passwd 33 +14:43:13.923 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin +14:43:13.924 webdav> + useradd -r webdav -u 33 -g 33 +14:43:13.957 webdav> useradd: UID 33 is not unique +14:43:13.958 webdav> + mkdir -p /srv/common/webdav +14:43:13.960 webdav> + chown 33 /srv/common/webdav +14:43:13.965 webdav> + trap _term SIGTERM +14:43:13.966 webdav> + pid=12 +14:43:13.966 webdav> + wait 12 +14:43:13.966 webdav> + /usr/sbin/apache2 -D FOREGROUND +14:43:14.010 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +14:43:14.014 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +14:43:14.016 webdav> [Fri Sep 13 14:43:14.016201 2024] [mpm_event:notice] [pid 12:tid 140119298836352] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations +14:43:14.016 webdav> [Fri Sep 13 14:43:14.016288 2024] [core:notice] [pid 12:tid 140119298836352] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' +14:43:14.064 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:14:43:14 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 161 ms +[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Start container 64910d2fa850 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waiting on url http://localhost:15672 with method HEAD for status 200..399. +14:43:18.242 rabbitmq> 2024-09-13 14:43:18.232976+00:00 [notice] <0.44.0> Application syslog exited with reason: stopped +14:43:18.242 rabbitmq> 2024-09-13 14:43:18.242023+00:00 [notice] <0.254.0> Logging: switching to configured handler(s); following messages may not be visible in this log output +14:43:18.244 rabbitmq> 2024-09-13 14:43:18.243216+00:00 [notice] <0.254.0> Logging: configured log handlers are now ACTIVE +14:43:18.257 rabbitmq> 2024-09-13 14:43:18.257204+00:00 [info] <0.254.0> ra: starting system quorum_queues +14:43:18.257 rabbitmq> 2024-09-13 14:43:18.257296+00:00 [info] <0.254.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/quorum/rabbit@64910d2fa850 +14:43:18.339 rabbitmq> 2024-09-13 14:43:18.339251+00:00 [info] <0.268.0> ra system 'quorum_queues' running pre init for 0 registered servers +14:43:18.354 rabbitmq> 2024-09-13 14:43:18.354427+00:00 [info] <0.269.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered +14:43:18.376 rabbitmq> 2024-09-13 14:43:18.375767+00:00 [notice] <0.274.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables +14:43:18.405 rabbitmq> 2024-09-13 14:43:18.405055+00:00 [info] <0.254.0> ra: starting system coordination +14:43:18.405 rabbitmq> 2024-09-13 14:43:18.405116+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/coordination/rabbit@64910d2fa850 +14:43:18.407 rabbitmq> 2024-09-13 14:43:18.407600+00:00 [info] <0.282.0> ra system 'coordination' running pre init for 0 registered servers +14:43:18.409 rabbitmq> 2024-09-13 14:43:18.409304+00:00 [info] <0.283.0> ra: meta data store initialised for system coordination. 0 record(s) recovered +14:43:18.409 rabbitmq> 2024-09-13 14:43:18.409568+00:00 [notice] <0.288.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables +14:43:18.417 rabbitmq> 2024-09-13 14:43:18.417556+00:00 [info] <0.254.0> ra: starting system coordination +14:43:18.418 rabbitmq> 2024-09-13 14:43:18.417618+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/coordination/rabbit@64910d2fa850 +14:43:18.574 rabbitmq> 2024-09-13 14:43:18.573792+00:00 [info] <0.254.0> Waiting for Khepri leader for 30000 ms, 9 retries left +14:43:18.594 rabbitmq> 2024-09-13 14:43:18.593764+00:00 [notice] <0.292.0> RabbitMQ metadata store: candidate -> leader in term: 1 machine version: 1 +14:43:18.603 rabbitmq> 2024-09-13 14:43:18.603463+00:00 [info] <0.254.0> Khepri leader elected +14:43:18.604 rabbitmq> 2024-09-13 14:43:18.603538+00:00 [info] <0.254.0> Waiting for Khepri projections for 30000 ms, 9 retries left +14:43:18.997 rabbitmq> 2024-09-13 14:43:18.997246+00:00 [info] <0.254.0> +14:43:18.997 rabbitmq> 2024-09-13 14:43:18.997246+00:00 [info] <0.254.0> Starting RabbitMQ 3.13.7 on Erlang 26.2.5.3 [jit] +14:43:18.997 rabbitmq> 2024-09-13 14:43:18.997246+00:00 [info] <0.254.0> Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries +14:43:18.997 rabbitmq> 2024-09-13 14:43:18.997246+00:00 [info] <0.254.0> Licensed under the MPL 2.0. Website: https://rabbitmq.com +14:43:18.998 rabbitmq> +14:43:18.998 rabbitmq> ## ## RabbitMQ 3.13.7 +14:43:18.998 rabbitmq> ## ## +14:43:18.998 rabbitmq> ########## Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries +14:43:18.998 rabbitmq> ###### ## +14:43:18.998 rabbitmq> ########## Licensed under the MPL 2.0. Website: https://rabbitmq.com +14:43:18.998 rabbitmq> +14:43:18.998 rabbitmq> Erlang: 26.2.5.3 [jit] +14:43:18.998 rabbitmq> TLS Library: OpenSSL - OpenSSL 3.1.7 3 Sep 2024 +14:43:18.998 rabbitmq> Release series support status: see https://www.rabbitmq.com/release-information +14:43:18.998 rabbitmq> +14:43:18.998 rabbitmq> Doc guides: https://www.rabbitmq.com/docs +14:43:18.998 rabbitmq> Support: https://www.rabbitmq.com/docs/contact +14:43:18.998 rabbitmq> Tutorials: https://www.rabbitmq.com/tutorials +14:43:18.998 rabbitmq> Monitoring: https://www.rabbitmq.com/docs/monitoring +14:43:18.998 rabbitmq> Upgrading: https://www.rabbitmq.com/docs/upgrade +14:43:18.998 rabbitmq> +14:43:18.998 rabbitmq> Logs: +14:43:18.998 rabbitmq> +14:43:18.998 rabbitmq> Config file(s): /etc/rabbitmq/conf.d/10-defaults.conf +14:43:18.998 rabbitmq> +14:43:19.001 rabbitmq> Starting broker...2024-09-13 14:43:19.001426+00:00 [info] <0.254.0> +14:43:19.001 rabbitmq> 2024-09-13 14:43:19.001426+00:00 [info] <0.254.0> node : rabbit@64910d2fa850 +14:43:19.001 rabbitmq> 2024-09-13 14:43:19.001426+00:00 [info] <0.254.0> home dir : /var/lib/rabbitmq +14:43:19.001 rabbitmq> 2024-09-13 14:43:19.001426+00:00 [info] <0.254.0> config file(s) : /etc/rabbitmq/conf.d/10-defaults.conf +14:43:19.001 rabbitmq> 2024-09-13 14:43:19.001426+00:00 [info] <0.254.0> cookie hash : 1pBFVfpaAgh681diLhMAcg== +14:43:19.001 rabbitmq> 2024-09-13 14:43:19.001426+00:00 [info] <0.254.0> log(s) : +14:43:19.001 rabbitmq> 2024-09-13 14:43:19.001426+00:00 [info] <0.254.0> data dir : /var/lib/rabbitmq/mnesia/rabbit@64910d2fa850 +14:43:19.394 rabbitmq> 2024-09-13 14:43:19.393839+00:00 [info] <0.254.0> Running boot step pre_boot defined by app rabbit +14:43:19.394 rabbitmq> 2024-09-13 14:43:19.393907+00:00 [info] <0.254.0> Running boot step rabbit_global_counters defined by app rabbit +14:43:19.394 rabbitmq> 2024-09-13 14:43:19.394105+00:00 [info] <0.254.0> Running boot step rabbit_osiris_metrics defined by app rabbit +14:43:19.394 rabbitmq> 2024-09-13 14:43:19.394190+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics defined by app rabbit +14:43:19.394 rabbitmq> 2024-09-13 14:43:19.394463+00:00 [info] <0.254.0> Running boot step rabbit_alarm defined by app rabbit +14:43:19.407 rabbitmq> 2024-09-13 14:43:19.406974+00:00 [info] <0.329.0> Memory high watermark set to 6399 MiB (6710412902 bytes) of 15998 MiB (16776032256 bytes) total +14:43:19.410 rabbitmq> 2024-09-13 14:43:19.410274+00:00 [info] <0.331.0> Enabling free disk space monitoring (disk free space: 969866067968, total memory: 16776032256) +14:43:19.411 rabbitmq> 2024-09-13 14:43:19.410335+00:00 [info] <0.331.0> Disk free limit set to 50MB +14:43:19.412 rabbitmq> 2024-09-13 14:43:19.412430+00:00 [info] <0.254.0> Running boot step code_server_cache defined by app rabbit +14:43:19.412 rabbitmq> 2024-09-13 14:43:19.412530+00:00 [info] <0.254.0> Running boot step file_handle_cache defined by app rabbit +14:43:19.420 rabbitmq> 2024-09-13 14:43:19.420278+00:00 [info] <0.334.0> Limiting to approx 1048479 file handles (943629 sockets) +14:43:19.420 rabbitmq> 2024-09-13 14:43:19.420451+00:00 [info] <0.335.0> FHC read buffering: OFF +14:43:19.420 rabbitmq> 2024-09-13 14:43:19.420493+00:00 [info] <0.335.0> FHC write buffering: ON +14:43:19.421 rabbitmq> 2024-09-13 14:43:19.421275+00:00 [info] <0.254.0> Running boot step worker_pool defined by app rabbit +14:43:19.421 rabbitmq> 2024-09-13 14:43:19.421393+00:00 [info] <0.315.0> Will use 4 processes for default worker pool +14:43:19.421 rabbitmq> 2024-09-13 14:43:19.421435+00:00 [info] <0.315.0> Starting worker pool 'worker_pool' with 4 processes in it +14:43:19.422 rabbitmq> 2024-09-13 14:43:19.421776+00:00 [info] <0.254.0> Running boot step database defined by app rabbit +14:43:19.422 rabbitmq> 2024-09-13 14:43:19.421976+00:00 [info] <0.254.0> Peer discovery: configured backend: rabbit_peer_discovery_classic_config +14:43:19.423 rabbitmq> 2024-09-13 14:43:19.423156+00:00 [notice] <0.316.0> Feature flags: attempt to enable `detailed_queues_endpoint`... +14:43:19.493 rabbitmq> 2024-09-13 14:43:19.493229+00:00 [notice] <0.316.0> Feature flags: `detailed_queues_endpoint` enabled +14:43:19.495 rabbitmq> 2024-09-13 14:43:19.493373+00:00 [notice] <0.316.0> Feature flags: attempt to enable `quorum_queue_non_voters`... +14:43:19.562 rabbitmq> 2024-09-13 14:43:19.562190+00:00 [notice] <0.316.0> Feature flags: `quorum_queue_non_voters` enabled +14:43:19.562 rabbitmq> 2024-09-13 14:43:19.562353+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_update_config_command`... +14:43:19.633 rabbitmq> 2024-09-13 14:43:19.632985+00:00 [notice] <0.316.0> Feature flags: `stream_update_config_command` enabled +14:43:19.634 rabbitmq> 2024-09-13 14:43:19.633183+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_filtering`... +14:43:19.704 rabbitmq> 2024-09-13 14:43:19.704580+00:00 [notice] <0.316.0> Feature flags: `stream_filtering` enabled +14:43:19.704 rabbitmq> 2024-09-13 14:43:19.704743+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_sac_coordinator_unblock_group`... +14:43:19.777 rabbitmq> 2024-09-13 14:43:19.776863+00:00 [notice] <0.316.0> Feature flags: `stream_sac_coordinator_unblock_group` enabled +14:43:19.777 rabbitmq> 2024-09-13 14:43:19.777075+00:00 [notice] <0.316.0> Feature flags: attempt to enable `restart_streams`... +14:43:19.847 rabbitmq> 2024-09-13 14:43:19.846998+00:00 [notice] <0.316.0> Feature flags: `restart_streams` enabled +14:43:19.848 rabbitmq> 2024-09-13 14:43:19.847279+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers`... +14:43:19.920 rabbitmq> 2024-09-13 14:43:19.919810+00:00 [notice] <0.316.0> Feature flags: `message_containers` enabled +14:43:19.920 rabbitmq> 2024-09-13 14:43:19.919933+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers_deaths_v2`... +14:43:19.990 rabbitmq> 2024-09-13 14:43:19.989755+00:00 [notice] <0.316.0> Feature flags: `message_containers_deaths_v2` enabled +14:43:19.990 rabbitmq> 2024-09-13 14:43:19.990389+00:00 [info] <0.254.0> DB: virgin node -> run peer discovery +14:43:19.990 rabbitmq> 2024-09-13 14:43:19.990458+00:00 [warning] <0.254.0> Classic peer discovery backend: list of nodes does not contain the local node [] +14:43:20.002 rabbitmq> 2024-09-13 14:43:20.002149+00:00 [notice] <0.44.0> Application mnesia exited with reason: stopped +14:43:20.335 rabbitmq> 2024-09-13 14:43:20.334804+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +14:43:20.335 rabbitmq> 2024-09-13 14:43:20.334931+00:00 [info] <0.254.0> Successfully synced tables from a peer +14:43:20.335 rabbitmq> 2024-09-13 14:43:20.335027+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +14:43:20.335 rabbitmq> 2024-09-13 14:43:20.335075+00:00 [info] <0.254.0> Successfully synced tables from a peer +14:43:20.361 rabbitmq> 2024-09-13 14:43:20.361349+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +14:43:20.361 rabbitmq> 2024-09-13 14:43:20.361493+00:00 [info] <0.254.0> Successfully synced tables from a peer +14:43:20.362 rabbitmq> 2024-09-13 14:43:20.361751+00:00 [info] <0.254.0> Running boot step tracking_metadata_store defined by app rabbit +14:43:20.362 rabbitmq> 2024-09-13 14:43:20.361887+00:00 [info] <0.558.0> Setting up a table for connection tracking on this node: tracked_connection +14:43:20.363 rabbitmq> 2024-09-13 14:43:20.361930+00:00 [info] <0.558.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost +14:43:20.363 rabbitmq> 2024-09-13 14:43:20.361989+00:00 [info] <0.558.0> Setting up a table for per-user connection counting on this node: tracked_connection_per_user +14:43:20.363 rabbitmq> 2024-09-13 14:43:20.362036+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel +14:43:20.364 rabbitmq> 2024-09-13 14:43:20.362084+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel_per_user +14:43:20.365 rabbitmq> 2024-09-13 14:43:20.362121+00:00 [info] <0.254.0> Running boot step networking_metadata_store defined by app rabbit +14:43:20.365 rabbitmq> 2024-09-13 14:43:20.362210+00:00 [info] <0.254.0> Running boot step feature_flags defined by app rabbit +14:43:20.365 rabbitmq> 2024-09-13 14:43:20.362350+00:00 [info] <0.254.0> Running boot step codec_correctness_check defined by app rabbit +14:43:20.365 rabbitmq> 2024-09-13 14:43:20.362373+00:00 [info] <0.254.0> Running boot step external_infrastructure defined by app rabbit +14:43:20.366 rabbitmq> 2024-09-13 14:43:20.362399+00:00 [info] <0.254.0> Running boot step rabbit_event defined by app rabbit +14:43:20.366 rabbitmq> 2024-09-13 14:43:20.362556+00:00 [info] <0.254.0> Running boot step rabbit_registry defined by app rabbit +14:43:20.366 rabbitmq> 2024-09-13 14:43:20.362645+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit +14:43:20.366 rabbitmq> 2024-09-13 14:43:20.362827+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit +14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363032+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit +14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363118+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_direct defined by app rabbit +14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363212+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit +14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363285+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_headers defined by app rabbit +14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363332+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_topic defined by app rabbit +14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363363+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit +14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363402+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit +14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363441+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit +14:43:20.367 rabbitmq> 2024-09-13 14:43:20.363472+00:00 [info] <0.254.0> Running boot step rabbit_priority_queue defined by app rabbit +14:43:20.367 rabbitmq> 2024-09-13 14:43:20.363492+00:00 [info] <0.254.0> Priority queues enabled, real BQ is rabbit_variable_queue +14:43:20.370 rabbitmq> 2024-09-13 14:43:20.363521+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_client_local defined by app rabbit +14:43:20.370 rabbitmq> 2024-09-13 14:43:20.363575+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit +14:43:20.371 rabbitmq> 2024-09-13 14:43:20.363604+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_random defined by app rabbit +14:43:20.371 rabbitmq> 2024-09-13 14:43:20.363630+00:00 [info] <0.254.0> Running boot step kernel_ready defined by app rabbit +14:43:20.371 rabbitmq> 2024-09-13 14:43:20.363708+00:00 [info] <0.254.0> Running boot step rabbit_sysmon_minder defined by app rabbit +14:43:20.371 rabbitmq> 2024-09-13 14:43:20.363975+00:00 [info] <0.254.0> Running boot step rabbit_epmd_monitor defined by app rabbit +14:43:20.372 rabbitmq> 2024-09-13 14:43:20.369887+00:00 [info] <0.566.0> epmd monitor knows us, inter-node communication (distribution) port: 25672 +14:43:20.374 rabbitmq> 2024-09-13 14:43:20.370012+00:00 [info] <0.254.0> Running boot step guid_generator defined by app rabbit +14:43:20.378 rabbitmq> 2024-09-13 14:43:20.378264+00:00 [info] <0.254.0> Running boot step rabbit_node_monitor defined by app rabbit +14:43:20.378 rabbitmq> 2024-09-13 14:43:20.378519+00:00 [info] <0.570.0> Starting rabbit_node_monitor (in ignore mode) +14:43:20.379 rabbitmq> 2024-09-13 14:43:20.378632+00:00 [info] <0.254.0> Running boot step delegate_sup defined by app rabbit +14:43:20.379 rabbitmq> 2024-09-13 14:43:20.379115+00:00 [info] <0.254.0> Running boot step rabbit_memory_monitor defined by app rabbit +14:43:20.379 rabbitmq> 2024-09-13 14:43:20.379244+00:00 [info] <0.254.0> Running boot step rabbit_fifo_dlx_sup defined by app rabbit +14:43:20.379 rabbitmq> 2024-09-13 14:43:20.379295+00:00 [info] <0.254.0> Running boot step core_initialized defined by app rabbit +14:43:20.380 rabbitmq> 2024-09-13 14:43:20.379315+00:00 [info] <0.254.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit +14:43:20.380 rabbitmq> 2024-09-13 14:43:20.379373+00:00 [info] <0.254.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit +14:43:20.380 rabbitmq> 2024-09-13 14:43:20.379411+00:00 [info] <0.254.0> Running boot step rabbit_definitions_hashing defined by app rabbit +14:43:20.380 rabbitmq> 2024-09-13 14:43:20.379473+00:00 [info] <0.254.0> Running boot step rabbit_exchange_parameters defined by app rabbit +14:43:20.420 rabbitmq> 2024-09-13 14:43:20.420170+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit +14:43:20.421 rabbitmq> 2024-09-13 14:43:20.421079+00:00 [info] <0.254.0> Running boot step rabbit_policies defined by app rabbit +14:43:20.422 rabbitmq> 2024-09-13 14:43:20.421894+00:00 [info] <0.254.0> Running boot step rabbit_policy defined by app rabbit +14:43:20.423 rabbitmq> 2024-09-13 14:43:20.422029+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_validator defined by app rabbit +14:43:20.423 rabbitmq> 2024-09-13 14:43:20.422746+00:00 [info] <0.254.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit +14:43:20.424 rabbitmq> 2024-09-13 14:43:20.422887+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue defined by app rabbit +14:43:20.425 rabbitmq> 2024-09-13 14:43:20.423041+00:00 [info] <0.254.0> Running boot step rabbit_stream_coordinator defined by app rabbit +14:43:20.425 rabbitmq> 2024-09-13 14:43:20.423327+00:00 [info] <0.254.0> Running boot step rabbit_vhost_limit defined by app rabbit +14:43:20.426 rabbitmq> 2024-09-13 14:43:20.423527+00:00 [info] <0.254.0> Running boot step rabbit_federation_parameters defined by app rabbitmq_federation +14:43:20.428 rabbitmq> 2024-09-13 14:43:20.423710+00:00 [info] <0.254.0> Running boot step rabbit_federation_supervisor defined by app rabbitmq_federation +14:43:20.439 rabbitmq> 2024-09-13 14:43:20.439372+00:00 [info] <0.254.0> Running boot step rabbit_federation_queue defined by app rabbitmq_federation +14:43:20.440 rabbitmq> 2024-09-13 14:43:20.439570+00:00 [info] <0.254.0> Running boot step rabbit_federation_upstream_exchange defined by app rabbitmq_federation +14:43:20.440 rabbitmq> 2024-09-13 14:43:20.439627+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management +14:43:20.440 rabbitmq> 2024-09-13 14:43:20.439745+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent +14:43:20.440 rabbitmq> 2024-09-13 14:43:20.439801+00:00 [info] <0.254.0> Management plugin: using rates mode 'basic' +14:43:20.441 rabbitmq> 2024-09-13 14:43:20.440028+00:00 [info] <0.254.0> Running boot step recovery defined by app rabbit +14:43:20.455 rabbitmq> 2024-09-13 14:43:20.455171+00:00 [info] <0.254.0> Running boot step empty_db_check defined by app rabbit +14:43:20.455 rabbitmq> 2024-09-13 14:43:20.455231+00:00 [info] <0.254.0> Will seed default virtual host and user... +14:43:20.455 rabbitmq> 2024-09-13 14:43:20.455322+00:00 [info] <0.254.0> Adding vhost '/' (description: 'Default virtual host', tags: []) +14:43:20.515 rabbitmq> 2024-09-13 14:43:20.514668+00:00 [info] <0.630.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists +14:43:20.517 rabbitmq> 2024-09-13 14:43:20.516829+00:00 [info] <0.630.0> Setting segment_entry_count for vhost '/' with 0 queues to '2048' +14:43:20.535 rabbitmq> 2024-09-13 14:43:20.535307+00:00 [info] <0.630.0> Starting message stores for vhost '/' +14:43:20.535 rabbitmq> 2024-09-13 14:43:20.535525+00:00 [info] <0.639.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index +14:43:20.542 rabbitmq> 2024-09-13 14:43:20.542336+00:00 [info] <0.630.0> Started message store of type transient for vhost '/' +14:43:20.542 rabbitmq> 2024-09-13 14:43:20.542533+00:00 [info] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index +14:43:20.543 rabbitmq> 2024-09-13 14:43:20.543042+00:00 [warning] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch +14:43:20.544 rabbitmq> 2024-09-13 14:43:20.544215+00:00 [info] <0.630.0> Started message store of type persistent for vhost '/' +14:43:20.544 rabbitmq> 2024-09-13 14:43:20.544369+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_classic_queue took 27ms +14:43:20.544 rabbitmq> 2024-09-13 14:43:20.544411+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_quorum_queue took 0ms +14:43:20.544 rabbitmq> 2024-09-13 14:43:20.544483+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_stream_queue took 0ms +14:43:20.553 rabbitmq> 2024-09-13 14:43:20.552843+00:00 [info] <0.254.0> Created user 'guest' +14:43:20.560 rabbitmq> 2024-09-13 14:43:20.560248+00:00 [info] <0.254.0> Successfully set user tags for user 'guest' to [administrator] +14:43:20.568 rabbitmq> 2024-09-13 14:43:20.567770+00:00 [info] <0.254.0> Successfully set permissions for user 'guest' in virtual host '/' to '.*', '.*', '.*' +14:43:20.568 rabbitmq> 2024-09-13 14:43:20.567847+00:00 [info] <0.254.0> Running boot step rabbit_observer_cli defined by app rabbit +14:43:20.568 rabbitmq> 2024-09-13 14:43:20.567951+00:00 [info] <0.254.0> Running boot step rabbit_looking_glass defined by app rabbit +14:43:20.568 rabbitmq> 2024-09-13 14:43:20.568012+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics_gc defined by app rabbit +14:43:20.569 rabbitmq> 2024-09-13 14:43:20.568161+00:00 [info] <0.254.0> Running boot step background_gc defined by app rabbit +14:43:20.569 rabbitmq> 2024-09-13 14:43:20.568801+00:00 [info] <0.254.0> Running boot step routing_ready defined by app rabbit +14:43:20.569 rabbitmq> 2024-09-13 14:43:20.568923+00:00 [info] <0.254.0> Running boot step pre_flight defined by app rabbit +14:43:20.569 rabbitmq> 2024-09-13 14:43:20.568977+00:00 [info] <0.254.0> Running boot step notify_cluster defined by app rabbit +14:43:20.569 rabbitmq> 2024-09-13 14:43:20.569011+00:00 [info] <0.254.0> Running boot step networking defined by app rabbit +14:43:20.570 rabbitmq> 2024-09-13 14:43:20.569045+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue_periodic_membership_reconciliation defined by app rabbit +14:43:20.572 rabbitmq> 2024-09-13 14:43:20.569188+00:00 [info] <0.254.0> Running boot step definition_import_worker_pool defined by app rabbit +14:43:20.573 rabbitmq> 2024-09-13 14:43:20.569280+00:00 [info] <0.315.0> Starting worker pool 'definition_import_pool' with 4 processes in it +14:43:20.574 rabbitmq> 2024-09-13 14:43:20.570268+00:00 [info] <0.254.0> Running boot step cluster_name defined by app rabbit +14:43:20.574 rabbitmq> 2024-09-13 14:43:20.572173+00:00 [info] <0.254.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-STtXdSsu2MU_vs-W0QIf8Q' +14:43:20.579 rabbitmq> 2024-09-13 14:43:20.579623+00:00 [info] <0.254.0> Running boot step virtual_host_reconciliation defined by app rabbit +14:43:20.580 rabbitmq> 2024-09-13 14:43:20.579955+00:00 [info] <0.254.0> Running boot step direct_client defined by app rabbit +14:43:20.580 rabbitmq> 2024-09-13 14:43:20.580070+00:00 [info] <0.254.0> Running boot step rabbit_federation_exchange defined by app rabbitmq_federation +14:43:20.581 rabbitmq> 2024-09-13 14:43:20.580218+00:00 [info] <0.254.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management +14:43:20.581 rabbitmq> 2024-09-13 14:43:20.581169+00:00 [info] <0.680.0> Resetting node maintenance status +14:43:20.763 rabbitmq> 2024-09-13 14:43:20.762767+00:00 [warning] <0.709.0> Deprecated features: `management_metrics_collection`: Feature `management_metrics_collection` is deprecated. +14:43:20.763 rabbitmq> 2024-09-13 14:43:20.762767+00:00 [warning] <0.709.0> By default, this feature can still be used for now. +14:43:20.763 rabbitmq> 2024-09-13 14:43:20.762767+00:00 [warning] <0.709.0> Its use will not be permitted by default in a future minor RabbitMQ version and the feature will be removed from a future major RabbitMQ version; actual versions to be determined. +14:43:20.763 rabbitmq> 2024-09-13 14:43:20.762767+00:00 [warning] <0.709.0> To continue using this feature when it is not permitted by default, set the following parameter in your configuration: +14:43:20.763 rabbitmq> 2024-09-13 14:43:20.762767+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = true" +14:43:20.763 rabbitmq> 2024-09-13 14:43:20.762767+00:00 [warning] <0.709.0> To test RabbitMQ as if the feature was removed, set this in your configuration: +14:43:20.763 rabbitmq> 2024-09-13 14:43:20.762767+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = false" +14:43:23.883 rabbitmq> 2024-09-13 14:43:23.883273+00:00 [info] <0.746.0> Management plugin: HTTP (non-TLS) listener started on port 15672 +14:43:23.883 rabbitmq> 2024-09-13 14:43:23.883402+00:00 [info] <0.776.0> Statistics database started. +14:43:23.884 rabbitmq> 2024-09-13 14:43:23.883478+00:00 [info] <0.775.0> Starting worker pool 'management_worker_pool' with 3 processes in it +14:43:23.891 rabbitmq> 2024-09-13 14:43:23.891012+00:00 [info] <0.794.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692 +14:43:23.891 rabbitmq> 2024-09-13 14:43:23.891194+00:00 [info] <0.680.0> Ready to start client connection listeners +14:43:23.893 rabbitmq> 2024-09-13 14:43:23.892946+00:00 [info] <0.838.0> started TCP listener on [::]:5672 +14:43:23.985 rabbitmq> completed with 5 plugins. +14:43:23.985 rabbitmq> 2024-09-13 14:43:23.985536+00:00 [info] <0.680.0> Server startup complete; 5 plugins started. +[INFO] DOCKER> Pattern 'Server startup complete' matched for container 64910d2fa850 +14:43:23.985 rabbitmq> 2024-09-13 14:43:23.985536+00:00 [info] <0.680.0> * rabbitmq_prometheus +14:43:23.985 rabbitmq> 2024-09-13 14:43:23.985536+00:00 [info] <0.680.0> * rabbitmq_federation +14:43:23.985 rabbitmq> 2024-09-13 14:43:23.985536+00:00 [info] <0.680.0> * rabbitmq_management +14:43:23.985 rabbitmq> 2024-09-13 14:43:23.985536+00:00 [info] <0.680.0> * rabbitmq_management_agent +14:43:23.985 rabbitmq> 2024-09-13 14:43:23.985536+00:00 [info] <0.680.0> * rabbitmq_web_dispatch +14:43:23.999 rabbitmq> 2024-09-13 14:43:23.999021+00:00 [info] <0.9.0> Time to start RabbitMQ: 9165 ms +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waited on url http://localhost:15672 and on log out 'Server startup complete' 9565 ms +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Start container 1d0f075b1151 +14:43:26.062 sqs> +14:43:26.062 sqs> LocalStack version: 3.7.3.dev19 +14:43:26.062 sqs> LocalStack build date: 2024-09-13 +14:43:26.062 sqs> LocalStack build git hash: cb81582d8 +14:43:26.062 sqs> +14:43:26.855 sqs> Ready. +[INFO] DOCKER> Pattern 'Ready.' matched for container 1d0f075b1151 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Waited on log out 'Ready.' 2518 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container c007046138ee +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Start container 8656afca43a6 +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. +14:43:27.954 worker-languagedetection> [2024-09-13 14:43:27.952Z #007.??? INFO - - ] startup.sh: Running startup scripts... +14:43:27.958 worker-languagedetection> [2024-09-13 14:43:27.957Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +14:43:27.969 worker-languagedetection> [2024-09-13 14:43:27.967Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +14:43:27.972 worker-languagedetection> [2024-09-13 14:43:27.971Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +14:43:27.981 worker-languagedetection> [2024-09-13 14:43:27.979Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +14:43:27.983 worker-languagedetection> [2024-09-13 14:43:27.982Z #007.??? INFO - - ] startup.sh: Startup scripts completed +14:43:27.984 worker-languagedetection> [2024-09-13 14:43:27.984Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +14:43:28.671 worker-languagedetection> 14:43:28,417 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +14:43:28.671 worker-languagedetection> 14:43:28,418 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +14:43:28.671 worker-languagedetection> 14:43:28,418 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +14:43:28.671 worker-languagedetection> 14:43:28,420 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +14:43:28.671 worker-languagedetection> 14:43:28,426 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +14:43:28.671 worker-languagedetection> 14:43:28,427 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +14:43:28.671 worker-languagedetection> 14:43:28,437 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 8 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +14:43:28.671 worker-languagedetection> 14:43:28,437 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +14:43:28.671 worker-languagedetection> 14:43:28,438 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +14:43:28.671 worker-languagedetection> 14:43:28,438 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +14:43:28.671 worker-languagedetection> 14:43:28,443 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +14:43:28.671 worker-languagedetection> 14:43:28,452 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +14:43:28.671 worker-languagedetection> 14:43:28,527 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +14:43:28.671 worker-languagedetection> 14:43:28,527 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +14:43:28.671 worker-languagedetection> 14:43:28,527 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +14:43:28.671 worker-languagedetection> 14:43:28,593 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +14:43:28.671 worker-languagedetection> 14:43:28,593 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +14:43:28.671 worker-languagedetection> 14:43:28,593 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +14:43:28.671 worker-languagedetection> 14:43:28,596 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +14:43:28.671 worker-languagedetection> 14:43:28,596 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +14:43:28.671 worker-languagedetection> 14:43:28,606 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +14:43:28.671 worker-languagedetection> 14:43:28,612 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +14:43:28.671 worker-languagedetection> 14:43:28,652 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +14:43:28.671 worker-languagedetection> 14:43:28,656 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +14:43:28.671 worker-languagedetection> 14:43:28,656 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +14:43:28.671 worker-languagedetection> 14:43:28,657 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +14:43:28.671 worker-languagedetection> 14:43:28,657 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +14:43:28.672 worker-languagedetection> 14:43:28,658 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +14:43:28.672 worker-languagedetection> 14:43:28,658 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +14:43:28.672 worker-languagedetection> 14:43:28,659 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +14:43:28.672 worker-languagedetection> 14:43:28,659 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 221 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY +14:43:28.672 worker-languagedetection> +14:43:28.976 worker-languagedetection> [2024-09-13 14:43:28.942Z #619.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +14:43:30.105 worker-languagedetection> [2024-09-13 14:43:30.104Z #619.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +14:43:30.108 worker-languagedetection> [2024-09-13 14:43:30.107Z #619.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +14:43:30.109 worker-languagedetection> [2024-09-13 14:43:30.108Z #619.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +14:43:30.132 worker-languagedetection> [2024-09-13 14:43:30.131Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +14:43:30.135 worker-languagedetection> [2024-09-13 14:43:30.134Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +14:43:30.136 worker-languagedetection> [2024-09-13 14:43:30.135Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +14:43:30.139 worker-languagedetection> [2024-09-13 14:43:30.138Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +14:43:30.149 worker-languagedetection> [2024-09-13 14:43:30.149Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +14:43:30.151 worker-languagedetection> [2024-09-13 14:43:30.151Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +14:43:30.155 worker-languagedetection> [2024-09-13 14:43:30.155Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +14:43:30.217 worker-languagedetection> [2024-09-13 14:43:30.216Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider +14:43:30.261 worker-languagedetection> [2024-09-13 14:43:30.256Z #619.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} +14:43:30.394 worker-languagedetection> [2024-09-13 14:43:30.394Z #619.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@44e93c1f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +14:43:30.394 worker-languagedetection> [2024-09-13 14:43:30.394Z #619.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@42373389{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +14:43:30.396 worker-languagedetection> [2024-09-13 14:43:30.396Z #619.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS +14:43:30.405 worker-languagedetection> [2024-09-13 14:43:30.404Z #619.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. +14:43:30.420 worker-languagedetection> [2024-09-13 14:43:30.420Z #619.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE +14:43:30.424 worker-languagedetection> [2024-09-13 14:43:30.424Z #619.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY +14:43:30.425 worker-languagedetection> [2024-09-13 14:43:30.424Z #619.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY +14:43:30.426 worker-languagedetection> [2024-09-13 14:43:30.425Z #619.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY +14:43:30.427 worker-languagedetection> [2024-09-13 14:43:30.426Z #619.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE +14:43:30.445 worker-languagedetection> [2024-09-13 14:43:30.445Z #619.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY +14:43:30.446 worker-languagedetection> [2024-09-13 14:43:30.446Z #619.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE +14:43:30.449 worker-languagedetection> +14:43:30.822 worker-languagedetection> [2024-09-13 14:43:30.822Z #619.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} +14:43:30.823 worker-languagedetection> [2024-09-13 14:43:30.823Z #619.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@193bb809{/,null,AVAILABLE} +14:43:30.827 worker-languagedetection> [2024-09-13 14:43:30.827Z #619.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} +14:43:30.828 worker-languagedetection> [2024-09-13 14:43:30.828Z #619.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@131a7516{/,null,AVAILABLE} +14:43:30.835 worker-languagedetection> [2024-09-13 14:43:30.835Z #619.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@44e93c1f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +14:43:30.837 worker-languagedetection> [2024-09-13 14:43:30.836Z #619.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@42373389{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +14:43:30.839 worker-languagedetection> [2024-09-13 14:43:30.838Z #619.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@27d33393{STARTING}[11.0.23,sto=30000] @2827ms +14:43:30.908 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:30 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 13 +14:43:31.403 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:31 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 +14:43:31.907 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:31 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:32.416 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:32 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:32.921 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:32 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:33.433 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:33 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:33.946 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:33 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 +14:43:34.450 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:34 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:34.959 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:34 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:35.464 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:43:35.970 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:43:36.475 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:36.979 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:43:37.486 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:37.995 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:38.499 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:43:39.004 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:39.511 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:40.024 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:43:40.530 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:41.043 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:43:41.547 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:42.053 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:42.565 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:43:43.077 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 +14:43:43.582 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:44.086 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:44.595 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:45.100 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:45.430 worker-languagedetection> [2024-09-13 14:43:45.429Z #619.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE +14:43:45.606 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 +14:43:46.112 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:43:46.479 worker-languagedetection> [2024-09-13 14:43:46.479Z #619.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE +14:43:46.479 worker-languagedetection> [2024-09-13 14:43:46.479Z #619.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE +14:43:46.480 worker-languagedetection> [2024-09-13 14:43:46.479Z #619.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY +14:43:46.482 worker-languagedetection> [2024-09-13 14:43:46.481Z #619.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY +14:43:46.482 worker-languagedetection> [2024-09-13 14:43:46.481Z #619.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY +14:43:46.482 worker-languagedetection> [2024-09-13 14:43:46.481Z #619.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waited on url http://localhost:8082/health-check?type=READY 18689 ms +14:43:46.625 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +[INFO] +[INFO] --- failsafe:3.1.2:integration-test (sqs-implementation-testing) @ worker-languagedetection-container --- +[INFO] Tests are skipped. +[INFO] +[INFO] --- failsafe:3.1.2:integration-test (rabbit-implementation-testing) @ worker-languagedetection-container --- +[INFO] Tests are skipped. +[INFO] +[INFO] --- docker:0.43.4:stop (stop) @ worker-languagedetection-container --- +14:43:46.814 worker-languagedetection> [2024-09-13 14:43:46.813Z #619.033 INFO - - ] o.eclipse.jetty.server.Server: Stopped Server@27d33393{STOPPING}[11.0.23,sto=30000] +14:43:46.815 worker-languagedetection> [2024-09-13 14:43:46.814Z #619.033 INFO - - ] o.eclipse.jetty.server.Server: Shutdown Server@27d33393{STOPPING}[11.0.23,sto=30000] +14:43:46.818 worker-languagedetection> [2024-09-13 14:43:46.817Z #619.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped application@44e93c1f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +14:43:46.820 worker-languagedetection> [2024-09-13 14:43:46.820Z #619.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped admin@42373389{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +14:43:46.822 worker-languagedetection> [2024-09-13 14:43:46.822Z #619.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@131a7516{/,null,STOPPED} +14:43:46.830 worker-languagedetection> [2024-09-13 14:43:46.829Z #619.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@193bb809{/,null,STOPPED} +14:43:46.832 worker-languagedetection> [2024-09-13 14:43:46.832Z #619.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stop requested, allowing in-progress tasks to complete. +14:43:46.833 worker-languagedetection> [2024-09-13 14:43:46.832Z #619.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stopped. +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Stop and removed container 8656afca43a6 after 0 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container c007046138ee after 0 ms +14:43:48.492 sqs> Localstack runtime received signal 15 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Stop and removed container 1d0f075b1151 after 0 ms +14:43:54.492 rabbitmq> 2024-09-13 14:43:54.492278+00:00 [notice] <0.64.0> SIGTERM received - shutting down +14:43:54.492 rabbitmq> 2024-09-13 14:43:54.492278+00:00 [notice] <0.64.0> +14:43:54.494 rabbitmq> 2024-09-13 14:43:54.493976+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_prometheus_tls +14:43:54.500 rabbitmq> 2024-09-13 14:43:54.498855+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_management_tls +14:43:54.510 rabbitmq> 2024-09-13 14:43:54.509617+00:00 [info] <0.838.0> stopped TCP listener on [::]:5672 +14:43:54.511 rabbitmq> 2024-09-13 14:43:54.510980+00:00 [info] <0.630.0> Virtual host '/' is stopping +14:43:54.511 rabbitmq> 2024-09-13 14:43:54.511163+00:00 [info] <0.846.0> Closing all connections in vhost '/' on node 'rabbit@64910d2fa850' because the vhost is stopping +14:43:54.511 rabbitmq> 2024-09-13 14:43:54.511275+00:00 [info] <0.643.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' +14:43:54.523 rabbitmq> 2024-09-13 14:43:54.522863+00:00 [info] <0.643.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' is stopped +14:43:54.523 rabbitmq> 2024-09-13 14:43:54.523253+00:00 [info] <0.639.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' +14:43:54.533 rabbitmq> 2024-09-13 14:43:54.533370+00:00 [info] <0.639.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' is stopped +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Stop and removed container 64910d2fa850 after 0 ms +14:43:56.821 webdav> Caught SIGTERM signal! +14:43:56.821 webdav> ++ _term +14:43:56.821 webdav> ++ echo 'Caught SIGTERM signal!' +14:43:56.821 webdav> ++ kill -TERM '' +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container cfb1d6e99828 after 0 ms +[INFO] +[INFO] --- license:4.3:check (check-license-headers) @ worker-languagedetection-container --- +[INFO] Checking licenses... +[INFO] +[INFO] --- dependency:3.6.0:analyze-only (check-dependencies) @ worker-languagedetection-container --- +[INFO] Skipping pom project +[INFO] +[INFO] --- duplicate-finder:2.0.1:check (deepcheck-dependencies) @ worker-languagedetection-container --- +[INFO] Ignoring POM project! +[INFO] +[INFO] --- failsafe:3.1.2:verify (sqs-implementation-testing) @ worker-languagedetection-container --- +[INFO] Tests are skipped. +[INFO] +[INFO] --- failsafe:3.1.2:verify (rabbit-implementation-testing) @ worker-languagedetection-container --- +[INFO] Tests are skipped. +[INFO] +[INFO] --- install:3.1.1:install (default-install) @ worker-languagedetection-container --- +[INFO] Skipping artifact installation +[INFO] +[INFO] --- docker-versions:1.0.0-29:depopulate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 02:23 min +[INFO] Finished at: 2024-09-13T15:43:59+01:00 +[INFO] ------------------------------------------------------------------------ +[INFO] Scanning for projects... +[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] +[INFO] Inspecting build with total of 1 modules... +[INFO] Installing Nexus Staging features: +[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin +[INFO] +[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- +[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT +[INFO] from pom.xml +[INFO] --------------------------------[ pom ]--------------------------------- +[INFO] +[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest] +[INFO] +[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- +[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target +[INFO] +[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- +[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed +[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed +[INFO] +[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- +[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true +[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container +[INFO] Git info extracted in 317ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' +[INFO] +[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- +[INFO] Using plugin classloader, includes GMavenPlus and project classpath. +[INFO] Using Groovy 3.0.19 to perform execute. +[INFO] +[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- +[INFO] Updating license headers... +[INFO] +[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- +[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar +[INFO] +[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- +[INFO] Copying 2 resources from src/main/config to target/config-files +[INFO] +[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- +[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox +[INFO] DOCKER> +[INFO] DOCKER> ---> 6fd955f66c23 +[INFO] DOCKER> Step 2/4 : COPY maven /config/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 8be7948e3c01 +[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> ef52e370b90f +[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 1f97ff59e5f4 +[INFO] DOCKER> Successfully built 1f97ff59e5f4 +[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:1f97f +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Created docker-build.tar in 1 minute and 8 seconds +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 +[INFO] DOCKER> +[INFO] DOCKER> ---> 0f51baaf46f5 +[INFO] DOCKER> Step 2/4 : COPY maven /maven/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 91e7f56ef8cf +[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 002fc83963fa +[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 2adee4e4f048 +[INFO] DOCKER> Successfully built 2adee4e4f048 +[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Built image sha256:2adee +[INFO] +[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- +[INFO] Changes detected - recompiling the module! :source +[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes +[INFO] +[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- +[INFO] +[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- +[INFO] Not executing Javadoc as the project is not a Java classpath-capable package +[INFO] +[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container 131edc5d7f6c +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. +14:48:20.548 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf +14:48:20.550 webdav> + getent passwd 33 +14:48:20.551 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin +14:48:20.551 webdav> + useradd -r webdav -u 33 -g 33 +14:48:20.591 webdav> useradd: UID 33 is not unique +14:48:20.592 webdav> + mkdir -p /srv/common/webdav +14:48:20.594 webdav> + chown 33 /srv/common/webdav +14:48:20.595 webdav> + trap _term SIGTERM +14:48:20.596 webdav> + pid=12 +14:48:20.596 webdav> + wait 12 +14:48:20.596 webdav> + /usr/sbin/apache2 -D FOREGROUND +14:48:20.612 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +14:48:20.617 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +14:48:20.621 webdav> [Fri Sep 13 14:48:20.621790 2024] [mpm_event:notice] [pid 12:tid 139651234948992] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations +14:48:20.622 webdav> [Fri Sep 13 14:48:20.622094 2024] [core:notice] [pid 12:tid 139651234948992] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' +14:48:20.696 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:14:48:20 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" +[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 105 ms +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Start container 6a79a46cf398 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waiting on url http://localhost:15672 with method HEAD for status 200..399. +14:48:24.327 rabbitmq> 2024-09-13 14:48:24.318736+00:00 [notice] <0.44.0> Application syslog exited with reason: stopped +14:48:24.327 rabbitmq> 2024-09-13 14:48:24.327088+00:00 [notice] <0.254.0> Logging: switching to configured handler(s); following messages may not be visible in this log output +14:48:24.327 rabbitmq> 2024-09-13 14:48:24.327631+00:00 [notice] <0.254.0> Logging: configured log handlers are now ACTIVE +14:48:24.340 rabbitmq> 2024-09-13 14:48:24.340504+00:00 [info] <0.254.0> ra: starting system quorum_queues +14:48:24.341 rabbitmq> 2024-09-13 14:48:24.340602+00:00 [info] <0.254.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@6a79a46cf398/quorum/rabbit@6a79a46cf398 +14:48:24.423 rabbitmq> 2024-09-13 14:48:24.423550+00:00 [info] <0.268.0> ra system 'quorum_queues' running pre init for 0 registered servers +14:48:24.439 rabbitmq> 2024-09-13 14:48:24.438736+00:00 [info] <0.269.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered +14:48:24.456 rabbitmq> 2024-09-13 14:48:24.456006+00:00 [notice] <0.274.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables +14:48:24.481 rabbitmq> 2024-09-13 14:48:24.481248+00:00 [info] <0.254.0> ra: starting system coordination +14:48:24.481 rabbitmq> 2024-09-13 14:48:24.481308+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@6a79a46cf398/coordination/rabbit@6a79a46cf398 +14:48:24.484 rabbitmq> 2024-09-13 14:48:24.484138+00:00 [info] <0.282.0> ra system 'coordination' running pre init for 0 registered servers +14:48:24.485 rabbitmq> 2024-09-13 14:48:24.485497+00:00 [info] <0.283.0> ra: meta data store initialised for system coordination. 0 record(s) recovered +14:48:24.486 rabbitmq> 2024-09-13 14:48:24.485750+00:00 [notice] <0.288.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables +14:48:24.495 rabbitmq> 2024-09-13 14:48:24.495108+00:00 [info] <0.254.0> ra: starting system coordination +14:48:24.495 rabbitmq> 2024-09-13 14:48:24.495170+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@6a79a46cf398/coordination/rabbit@6a79a46cf398 +14:48:24.618 rabbitmq> 2024-09-13 14:48:24.617643+00:00 [info] <0.254.0> Waiting for Khepri leader for 30000 ms, 9 retries left +14:48:24.641 rabbitmq> 2024-09-13 14:48:24.641209+00:00 [notice] <0.292.0> RabbitMQ metadata store: candidate -> leader in term: 1 machine version: 1 +14:48:24.654 rabbitmq> 2024-09-13 14:48:24.653744+00:00 [info] <0.254.0> Khepri leader elected +14:48:24.654 rabbitmq> 2024-09-13 14:48:24.653859+00:00 [info] <0.254.0> Waiting for Khepri projections for 30000 ms, 9 retries left +14:48:25.081 rabbitmq> 2024-09-13 14:48:25.081050+00:00 [info] <0.254.0> +14:48:25.081 rabbitmq> 2024-09-13 14:48:25.081050+00:00 [info] <0.254.0> Starting RabbitMQ 3.13.7 on Erlang 26.2.5.3 [jit] +14:48:25.081 rabbitmq> 2024-09-13 14:48:25.081050+00:00 [info] <0.254.0> Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries +14:48:25.081 rabbitmq> 2024-09-13 14:48:25.081050+00:00 [info] <0.254.0> Licensed under the MPL 2.0. Website: https://rabbitmq.com +14:48:25.083 rabbitmq> +14:48:25.083 rabbitmq> ## ## RabbitMQ 3.13.7 +14:48:25.083 rabbitmq> ## ## +14:48:25.083 rabbitmq> ########## Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries +14:48:25.083 rabbitmq> ###### ## +14:48:25.083 rabbitmq> ########## Licensed under the MPL 2.0. Website: https://rabbitmq.com +14:48:25.083 rabbitmq> +14:48:25.083 rabbitmq> Erlang: 26.2.5.3 [jit] +14:48:25.083 rabbitmq> TLS Library: OpenSSL - OpenSSL 3.1.7 3 Sep 2024 +14:48:25.083 rabbitmq> Release series support status: see https://www.rabbitmq.com/release-information +14:48:25.083 rabbitmq> +14:48:25.083 rabbitmq> Doc guides: https://www.rabbitmq.com/docs +14:48:25.083 rabbitmq> Support: https://www.rabbitmq.com/docs/contact +14:48:25.083 rabbitmq> Tutorials: https://www.rabbitmq.com/tutorials +14:48:25.083 rabbitmq> Monitoring: https://www.rabbitmq.com/docs/monitoring +14:48:25.083 rabbitmq> Upgrading: https://www.rabbitmq.com/docs/upgrade +14:48:25.083 rabbitmq> +14:48:25.083 rabbitmq> Logs: +14:48:25.083 rabbitmq> +14:48:25.083 rabbitmq> Config file(s): /etc/rabbitmq/conf.d/10-defaults.conf +14:48:25.083 rabbitmq> +14:48:25.086 rabbitmq> Starting broker...2024-09-13 14:48:25.084190+00:00 [info] <0.254.0> +14:48:25.086 rabbitmq> 2024-09-13 14:48:25.084190+00:00 [info] <0.254.0> node : rabbit@6a79a46cf398 +14:48:25.086 rabbitmq> 2024-09-13 14:48:25.084190+00:00 [info] <0.254.0> home dir : /var/lib/rabbitmq +14:48:25.086 rabbitmq> 2024-09-13 14:48:25.084190+00:00 [info] <0.254.0> config file(s) : /etc/rabbitmq/conf.d/10-defaults.conf +14:48:25.086 rabbitmq> 2024-09-13 14:48:25.084190+00:00 [info] <0.254.0> cookie hash : /BHjxXeJNknZ/mDleoMO8Q== +14:48:25.086 rabbitmq> 2024-09-13 14:48:25.084190+00:00 [info] <0.254.0> log(s) : +14:48:25.086 rabbitmq> 2024-09-13 14:48:25.084190+00:00 [info] <0.254.0> data dir : /var/lib/rabbitmq/mnesia/rabbit@6a79a46cf398 +14:48:25.556 rabbitmq> 2024-09-13 14:48:25.555679+00:00 [info] <0.254.0> Running boot step pre_boot defined by app rabbit +14:48:25.556 rabbitmq> 2024-09-13 14:48:25.555756+00:00 [info] <0.254.0> Running boot step rabbit_global_counters defined by app rabbit +14:48:25.557 rabbitmq> 2024-09-13 14:48:25.556082+00:00 [info] <0.254.0> Running boot step rabbit_osiris_metrics defined by app rabbit +14:48:25.557 rabbitmq> 2024-09-13 14:48:25.556159+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics defined by app rabbit +14:48:25.557 rabbitmq> 2024-09-13 14:48:25.556500+00:00 [info] <0.254.0> Running boot step rabbit_alarm defined by app rabbit +14:48:25.572 rabbitmq> 2024-09-13 14:48:25.572481+00:00 [info] <0.329.0> Memory high watermark set to 6399 MiB (6710412902 bytes) of 15998 MiB (16776032256 bytes) total +14:48:25.577 rabbitmq> 2024-09-13 14:48:25.576938+00:00 [info] <0.331.0> Enabling free disk space monitoring (disk free space: 969865031680, total memory: 16776032256) +14:48:25.577 rabbitmq> 2024-09-13 14:48:25.577013+00:00 [info] <0.331.0> Disk free limit set to 50MB +14:48:25.579 rabbitmq> 2024-09-13 14:48:25.579637+00:00 [info] <0.254.0> Running boot step code_server_cache defined by app rabbit +14:48:25.580 rabbitmq> 2024-09-13 14:48:25.579745+00:00 [info] <0.254.0> Running boot step file_handle_cache defined by app rabbit +14:48:25.591 rabbitmq> 2024-09-13 14:48:25.590933+00:00 [info] <0.334.0> Limiting to approx 1048479 file handles (943629 sockets) +14:48:25.591 rabbitmq> 2024-09-13 14:48:25.591115+00:00 [info] <0.335.0> FHC read buffering: OFF +14:48:25.591 rabbitmq> 2024-09-13 14:48:25.591199+00:00 [info] <0.335.0> FHC write buffering: ON +14:48:25.592 rabbitmq> 2024-09-13 14:48:25.591756+00:00 [info] <0.254.0> Running boot step worker_pool defined by app rabbit +14:48:25.592 rabbitmq> 2024-09-13 14:48:25.592007+00:00 [info] <0.315.0> Will use 4 processes for default worker pool +14:48:25.593 rabbitmq> 2024-09-13 14:48:25.592075+00:00 [info] <0.315.0> Starting worker pool 'worker_pool' with 4 processes in it +14:48:25.593 rabbitmq> 2024-09-13 14:48:25.592449+00:00 [info] <0.254.0> Running boot step database defined by app rabbit +14:48:25.593 rabbitmq> 2024-09-13 14:48:25.592915+00:00 [info] <0.254.0> Peer discovery: configured backend: rabbit_peer_discovery_classic_config +14:48:25.595 rabbitmq> 2024-09-13 14:48:25.594819+00:00 [notice] <0.316.0> Feature flags: attempt to enable `detailed_queues_endpoint`... +14:48:25.685 rabbitmq> 2024-09-13 14:48:25.684709+00:00 [notice] <0.316.0> Feature flags: `detailed_queues_endpoint` enabled +14:48:25.685 rabbitmq> 2024-09-13 14:48:25.684860+00:00 [notice] <0.316.0> Feature flags: attempt to enable `quorum_queue_non_voters`... +14:48:25.764 rabbitmq> 2024-09-13 14:48:25.763746+00:00 [notice] <0.316.0> Feature flags: `quorum_queue_non_voters` enabled +14:48:25.764 rabbitmq> 2024-09-13 14:48:25.763919+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_update_config_command`... +14:48:25.839 rabbitmq> 2024-09-13 14:48:25.839231+00:00 [notice] <0.316.0> Feature flags: `stream_update_config_command` enabled +14:48:25.839 rabbitmq> 2024-09-13 14:48:25.839385+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_filtering`... +14:48:25.913 rabbitmq> 2024-09-13 14:48:25.913206+00:00 [notice] <0.316.0> Feature flags: `stream_filtering` enabled +14:48:25.915 rabbitmq> 2024-09-13 14:48:25.913341+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_sac_coordinator_unblock_group`... +14:48:25.986 rabbitmq> 2024-09-13 14:48:25.985930+00:00 [notice] <0.316.0> Feature flags: `stream_sac_coordinator_unblock_group` enabled +14:48:25.986 rabbitmq> 2024-09-13 14:48:25.986075+00:00 [notice] <0.316.0> Feature flags: attempt to enable `restart_streams`... +14:48:26.056 rabbitmq> 2024-09-13 14:48:26.056457+00:00 [notice] <0.316.0> Feature flags: `restart_streams` enabled +14:48:26.057 rabbitmq> 2024-09-13 14:48:26.056708+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers`... +14:48:26.126 rabbitmq> 2024-09-13 14:48:26.126033+00:00 [notice] <0.316.0> Feature flags: `message_containers` enabled +14:48:26.127 rabbitmq> 2024-09-13 14:48:26.126185+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers_deaths_v2`... +14:48:26.197 rabbitmq> 2024-09-13 14:48:26.197680+00:00 [notice] <0.316.0> Feature flags: `message_containers_deaths_v2` enabled +14:48:26.198 rabbitmq> 2024-09-13 14:48:26.197922+00:00 [info] <0.254.0> DB: virgin node -> run peer discovery +14:48:26.198 rabbitmq> 2024-09-13 14:48:26.198123+00:00 [warning] <0.254.0> Classic peer discovery backend: list of nodes does not contain the local node [] +14:48:26.209 rabbitmq> 2024-09-13 14:48:26.208948+00:00 [notice] <0.44.0> Application mnesia exited with reason: stopped +14:48:26.514 rabbitmq> 2024-09-13 14:48:26.514365+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +14:48:26.515 rabbitmq> 2024-09-13 14:48:26.514472+00:00 [info] <0.254.0> Successfully synced tables from a peer +14:48:26.517 rabbitmq> 2024-09-13 14:48:26.514583+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +14:48:26.517 rabbitmq> 2024-09-13 14:48:26.514669+00:00 [info] <0.254.0> Successfully synced tables from a peer +14:48:26.539 rabbitmq> 2024-09-13 14:48:26.538985+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +14:48:26.539 rabbitmq> 2024-09-13 14:48:26.539216+00:00 [info] <0.254.0> Successfully synced tables from a peer +14:48:26.540 rabbitmq> 2024-09-13 14:48:26.539349+00:00 [info] <0.254.0> Running boot step tracking_metadata_store defined by app rabbit +14:48:26.540 rabbitmq> 2024-09-13 14:48:26.539428+00:00 [info] <0.558.0> Setting up a table for connection tracking on this node: tracked_connection +14:48:26.540 rabbitmq> 2024-09-13 14:48:26.539597+00:00 [info] <0.558.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost +14:48:26.541 rabbitmq> 2024-09-13 14:48:26.540127+00:00 [info] <0.558.0> Setting up a table for per-user connection counting on this node: tracked_connection_per_user +14:48:26.542 rabbitmq> 2024-09-13 14:48:26.540179+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel +14:48:26.542 rabbitmq> 2024-09-13 14:48:26.540225+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel_per_user +14:48:26.543 rabbitmq> 2024-09-13 14:48:26.540278+00:00 [info] <0.254.0> Running boot step networking_metadata_store defined by app rabbit +14:48:26.544 rabbitmq> 2024-09-13 14:48:26.540359+00:00 [info] <0.254.0> Running boot step feature_flags defined by app rabbit +14:48:26.544 rabbitmq> 2024-09-13 14:48:26.540906+00:00 [info] <0.254.0> Running boot step codec_correctness_check defined by app rabbit +14:48:26.545 rabbitmq> 2024-09-13 14:48:26.540961+00:00 [info] <0.254.0> Running boot step external_infrastructure defined by app rabbit +14:48:26.545 rabbitmq> 2024-09-13 14:48:26.540979+00:00 [info] <0.254.0> Running boot step rabbit_event defined by app rabbit +14:48:26.546 rabbitmq> 2024-09-13 14:48:26.541220+00:00 [info] <0.254.0> Running boot step rabbit_registry defined by app rabbit +14:48:26.546 rabbitmq> 2024-09-13 14:48:26.541328+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit +14:48:26.546 rabbitmq> 2024-09-13 14:48:26.541428+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit +14:48:26.546 rabbitmq> 2024-09-13 14:48:26.541502+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit +14:48:26.547 rabbitmq> 2024-09-13 14:48:26.541603+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_direct defined by app rabbit +14:48:26.547 rabbitmq> 2024-09-13 14:48:26.541735+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit +14:48:26.547 rabbitmq> 2024-09-13 14:48:26.541889+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_headers defined by app rabbit +14:48:26.548 rabbitmq> 2024-09-13 14:48:26.541994+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_topic defined by app rabbit +14:48:26.548 rabbitmq> 2024-09-13 14:48:26.542031+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit +14:48:26.548 rabbitmq> 2024-09-13 14:48:26.542173+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit +14:48:26.549 rabbitmq> 2024-09-13 14:48:26.542260+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit +14:48:26.549 rabbitmq> 2024-09-13 14:48:26.542299+00:00 [info] <0.254.0> Running boot step rabbit_priority_queue defined by app rabbit +14:48:26.549 rabbitmq> 2024-09-13 14:48:26.542340+00:00 [info] <0.254.0> Priority queues enabled, real BQ is rabbit_variable_queue +14:48:26.549 rabbitmq> 2024-09-13 14:48:26.542423+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_client_local defined by app rabbit +14:48:26.550 rabbitmq> 2024-09-13 14:48:26.543725+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit +14:48:26.550 rabbitmq> 2024-09-13 14:48:26.543843+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_random defined by app rabbit +14:48:26.550 rabbitmq> 2024-09-13 14:48:26.543925+00:00 [info] <0.254.0> Running boot step kernel_ready defined by app rabbit +14:48:26.551 rabbitmq> 2024-09-13 14:48:26.543949+00:00 [info] <0.254.0> Running boot step rabbit_sysmon_minder defined by app rabbit +14:48:26.551 rabbitmq> 2024-09-13 14:48:26.544059+00:00 [info] <0.254.0> Running boot step rabbit_epmd_monitor defined by app rabbit +14:48:26.552 rabbitmq> 2024-09-13 14:48:26.545494+00:00 [info] <0.566.0> epmd monitor knows us, inter-node communication (distribution) port: 25672 +14:48:26.552 rabbitmq> 2024-09-13 14:48:26.545584+00:00 [info] <0.254.0> Running boot step guid_generator defined by app rabbit +14:48:26.555 rabbitmq> 2024-09-13 14:48:26.555186+00:00 [info] <0.254.0> Running boot step rabbit_node_monitor defined by app rabbit +14:48:26.555 rabbitmq> 2024-09-13 14:48:26.555512+00:00 [info] <0.570.0> Starting rabbit_node_monitor (in ignore mode) +14:48:26.555 rabbitmq> 2024-09-13 14:48:26.555621+00:00 [info] <0.254.0> Running boot step delegate_sup defined by app rabbit +14:48:26.556 rabbitmq> 2024-09-13 14:48:26.555957+00:00 [info] <0.254.0> Running boot step rabbit_memory_monitor defined by app rabbit +14:48:26.556 rabbitmq> 2024-09-13 14:48:26.556058+00:00 [info] <0.254.0> Running boot step rabbit_fifo_dlx_sup defined by app rabbit +14:48:26.557 rabbitmq> 2024-09-13 14:48:26.556104+00:00 [info] <0.254.0> Running boot step core_initialized defined by app rabbit +14:48:26.557 rabbitmq> 2024-09-13 14:48:26.556124+00:00 [info] <0.254.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit +14:48:26.558 rabbitmq> 2024-09-13 14:48:26.556178+00:00 [info] <0.254.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit +14:48:26.558 rabbitmq> 2024-09-13 14:48:26.556218+00:00 [info] <0.254.0> Running boot step rabbit_definitions_hashing defined by app rabbit +14:48:26.559 rabbitmq> 2024-09-13 14:48:26.556320+00:00 [info] <0.254.0> Running boot step rabbit_exchange_parameters defined by app rabbit +14:48:26.597 rabbitmq> 2024-09-13 14:48:26.597197+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit +14:48:26.597 rabbitmq> 2024-09-13 14:48:26.597760+00:00 [info] <0.254.0> Running boot step rabbit_policies defined by app rabbit +14:48:26.598 rabbitmq> 2024-09-13 14:48:26.597995+00:00 [info] <0.254.0> Running boot step rabbit_policy defined by app rabbit +14:48:26.598 rabbitmq> 2024-09-13 14:48:26.598045+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_validator defined by app rabbit +14:48:26.598 rabbitmq> 2024-09-13 14:48:26.598314+00:00 [info] <0.254.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit +14:48:26.599 rabbitmq> 2024-09-13 14:48:26.598404+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue defined by app rabbit +14:48:26.599 rabbitmq> 2024-09-13 14:48:26.598506+00:00 [info] <0.254.0> Running boot step rabbit_stream_coordinator defined by app rabbit +14:48:26.599 rabbitmq> 2024-09-13 14:48:26.598822+00:00 [info] <0.254.0> Running boot step rabbit_vhost_limit defined by app rabbit +14:48:26.599 rabbitmq> 2024-09-13 14:48:26.598890+00:00 [info] <0.254.0> Running boot step rabbit_federation_parameters defined by app rabbitmq_federation +14:48:26.599 rabbitmq> 2024-09-13 14:48:26.599037+00:00 [info] <0.254.0> Running boot step rabbit_federation_supervisor defined by app rabbitmq_federation +14:48:26.608 rabbitmq> 2024-09-13 14:48:26.608075+00:00 [info] <0.254.0> Running boot step rabbit_federation_queue defined by app rabbitmq_federation +14:48:26.608 rabbitmq> 2024-09-13 14:48:26.608225+00:00 [info] <0.254.0> Running boot step rabbit_federation_upstream_exchange defined by app rabbitmq_federation +14:48:26.609 rabbitmq> 2024-09-13 14:48:26.608309+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management +14:48:26.609 rabbitmq> 2024-09-13 14:48:26.608372+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent +14:48:26.609 rabbitmq> 2024-09-13 14:48:26.608404+00:00 [info] <0.254.0> Management plugin: using rates mode 'basic' +14:48:26.609 rabbitmq> 2024-09-13 14:48:26.608573+00:00 [info] <0.254.0> Running boot step recovery defined by app rabbit +14:48:26.623 rabbitmq> 2024-09-13 14:48:26.623472+00:00 [info] <0.254.0> Running boot step empty_db_check defined by app rabbit +14:48:26.623 rabbitmq> 2024-09-13 14:48:26.623556+00:00 [info] <0.254.0> Will seed default virtual host and user... +14:48:26.623 rabbitmq> 2024-09-13 14:48:26.623686+00:00 [info] <0.254.0> Adding vhost '/' (description: 'Default virtual host', tags: []) +14:48:26.686 rabbitmq> 2024-09-13 14:48:26.685680+00:00 [info] <0.630.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@6a79a46cf398/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists +14:48:26.688 rabbitmq> 2024-09-13 14:48:26.688099+00:00 [info] <0.630.0> Setting segment_entry_count for vhost '/' with 0 queues to '2048' +14:48:26.706 rabbitmq> 2024-09-13 14:48:26.706385+00:00 [info] <0.630.0> Starting message stores for vhost '/' +14:48:26.707 rabbitmq> 2024-09-13 14:48:26.706690+00:00 [info] <0.639.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index +14:48:26.709 rabbitmq> 2024-09-13 14:48:26.708790+00:00 [info] <0.630.0> Started message store of type transient for vhost '/' +14:48:26.709 rabbitmq> 2024-09-13 14:48:26.708934+00:00 [info] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index +14:48:26.710 rabbitmq> 2024-09-13 14:48:26.709857+00:00 [warning] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch +14:48:26.711 rabbitmq> 2024-09-13 14:48:26.710974+00:00 [info] <0.630.0> Started message store of type persistent for vhost '/' +14:48:26.711 rabbitmq> 2024-09-13 14:48:26.711160+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_classic_queue took 22ms +14:48:26.711 rabbitmq> 2024-09-13 14:48:26.711208+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_quorum_queue took 0ms +14:48:26.712 rabbitmq> 2024-09-13 14:48:26.711259+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_stream_queue took 0ms +14:48:26.720 rabbitmq> 2024-09-13 14:48:26.719845+00:00 [info] <0.254.0> Created user 'guest' +14:48:26.728 rabbitmq> 2024-09-13 14:48:26.728032+00:00 [info] <0.254.0> Successfully set user tags for user 'guest' to [administrator] +14:48:26.735 rabbitmq> 2024-09-13 14:48:26.735375+00:00 [info] <0.254.0> Successfully set permissions for user 'guest' in virtual host '/' to '.*', '.*', '.*' +14:48:26.735 rabbitmq> 2024-09-13 14:48:26.735486+00:00 [info] <0.254.0> Running boot step rabbit_observer_cli defined by app rabbit +14:48:26.735 rabbitmq> 2024-09-13 14:48:26.735588+00:00 [info] <0.254.0> Running boot step rabbit_looking_glass defined by app rabbit +14:48:26.736 rabbitmq> 2024-09-13 14:48:26.735625+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics_gc defined by app rabbit +14:48:26.736 rabbitmq> 2024-09-13 14:48:26.735968+00:00 [info] <0.254.0> Running boot step background_gc defined by app rabbit +14:48:26.736 rabbitmq> 2024-09-13 14:48:26.736213+00:00 [info] <0.254.0> Running boot step routing_ready defined by app rabbit +14:48:26.736 rabbitmq> 2024-09-13 14:48:26.736399+00:00 [info] <0.254.0> Running boot step pre_flight defined by app rabbit +14:48:26.738 rabbitmq> 2024-09-13 14:48:26.736535+00:00 [info] <0.254.0> Running boot step notify_cluster defined by app rabbit +14:48:26.738 rabbitmq> 2024-09-13 14:48:26.736594+00:00 [info] <0.254.0> Running boot step networking defined by app rabbit +14:48:26.738 rabbitmq> 2024-09-13 14:48:26.736640+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue_periodic_membership_reconciliation defined by app rabbit +14:48:26.738 rabbitmq> 2024-09-13 14:48:26.736991+00:00 [info] <0.254.0> Running boot step definition_import_worker_pool defined by app rabbit +14:48:26.738 rabbitmq> 2024-09-13 14:48:26.737065+00:00 [info] <0.315.0> Starting worker pool 'definition_import_pool' with 4 processes in it +14:48:26.738 rabbitmq> 2024-09-13 14:48:26.737534+00:00 [info] <0.254.0> Running boot step cluster_name defined by app rabbit +14:48:26.738 rabbitmq> 2024-09-13 14:48:26.737656+00:00 [info] <0.254.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-9D-mfqy9ITQKE3qiXrZVow' +14:48:26.744 rabbitmq> 2024-09-13 14:48:26.744437+00:00 [info] <0.254.0> Running boot step virtual_host_reconciliation defined by app rabbit +14:48:26.745 rabbitmq> 2024-09-13 14:48:26.744806+00:00 [info] <0.254.0> Running boot step direct_client defined by app rabbit +14:48:26.745 rabbitmq> 2024-09-13 14:48:26.744917+00:00 [info] <0.254.0> Running boot step rabbit_federation_exchange defined by app rabbitmq_federation +14:48:26.745 rabbitmq> 2024-09-13 14:48:26.745048+00:00 [info] <0.254.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management +14:48:26.746 rabbitmq> 2024-09-13 14:48:26.745137+00:00 [info] <0.680.0> Resetting node maintenance status +14:48:26.926 rabbitmq> 2024-09-13 14:48:26.926328+00:00 [warning] <0.709.0> Deprecated features: `management_metrics_collection`: Feature `management_metrics_collection` is deprecated. +14:48:26.926 rabbitmq> 2024-09-13 14:48:26.926328+00:00 [warning] <0.709.0> By default, this feature can still be used for now. +14:48:26.926 rabbitmq> 2024-09-13 14:48:26.926328+00:00 [warning] <0.709.0> Its use will not be permitted by default in a future minor RabbitMQ version and the feature will be removed from a future major RabbitMQ version; actual versions to be determined. +14:48:26.926 rabbitmq> 2024-09-13 14:48:26.926328+00:00 [warning] <0.709.0> To continue using this feature when it is not permitted by default, set the following parameter in your configuration: +14:48:26.926 rabbitmq> 2024-09-13 14:48:26.926328+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = true" +14:48:26.926 rabbitmq> 2024-09-13 14:48:26.926328+00:00 [warning] <0.709.0> To test RabbitMQ as if the feature was removed, set this in your configuration: +14:48:26.926 rabbitmq> 2024-09-13 14:48:26.926328+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = false" +14:48:29.832 rabbitmq> 2024-09-13 14:48:29.831877+00:00 [info] <0.746.0> Management plugin: HTTP (non-TLS) listener started on port 15672 +14:48:29.832 rabbitmq> 2024-09-13 14:48:29.832016+00:00 [info] <0.776.0> Statistics database started. +14:48:29.832 rabbitmq> 2024-09-13 14:48:29.832080+00:00 [info] <0.775.0> Starting worker pool 'management_worker_pool' with 3 processes in it +14:48:29.839 rabbitmq> 2024-09-13 14:48:29.839537+00:00 [info] <0.794.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692 +14:48:29.839 rabbitmq> 2024-09-13 14:48:29.839690+00:00 [info] <0.680.0> Ready to start client connection listeners +14:48:29.841 rabbitmq> 2024-09-13 14:48:29.841660+00:00 [info] <0.838.0> started TCP listener on [::]:5672 +14:48:29.943 rabbitmq> completed with 5 plugins. +14:48:29.943 rabbitmq> 2024-09-13 14:48:29.943175+00:00 [info] <0.680.0> Server startup complete; 5 plugins started. +[INFO] DOCKER> Pattern 'Server startup complete' matched for container 6a79a46cf398 +14:48:29.943 rabbitmq> 2024-09-13 14:48:29.943175+00:00 [info] <0.680.0> * rabbitmq_prometheus +14:48:29.943 rabbitmq> 2024-09-13 14:48:29.943175+00:00 [info] <0.680.0> * rabbitmq_federation +14:48:29.943 rabbitmq> 2024-09-13 14:48:29.943175+00:00 [info] <0.680.0> * rabbitmq_management +14:48:29.943 rabbitmq> 2024-09-13 14:48:29.943175+00:00 [info] <0.680.0> * rabbitmq_management_agent +14:48:29.943 rabbitmq> 2024-09-13 14:48:29.943175+00:00 [info] <0.680.0> * rabbitmq_web_dispatch +14:48:29.963 rabbitmq> 2024-09-13 14:48:29.962809+00:00 [info] <0.9.0> Time to start RabbitMQ: 8613 ms +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waited on url http://localhost:15672 and on log out 'Server startup complete' 9068 ms +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Start container bb27467f5073 +14:48:31.448 sqs> +14:48:31.448 sqs> LocalStack version: 3.7.3.dev19 +14:48:31.448 sqs> LocalStack build date: 2024-09-13 +14:48:31.448 sqs> LocalStack build git hash: cb81582d8 +14:48:31.448 sqs> +14:48:31.983 sqs> Ready. +[INFO] DOCKER> Pattern 'Ready.' matched for container bb27467f5073 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Waited on log out 'Ready.' 1509 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container 8401371aec6c +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Start container 55e75f338a66 +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. +14:48:33.238 worker-languagedetection> [2024-09-13 14:48:33.237Z #007.??? INFO - - ] startup.sh: Running startup scripts... +14:48:33.241 worker-languagedetection> [2024-09-13 14:48:33.240Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +14:48:33.250 worker-languagedetection> [2024-09-13 14:48:33.248Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +14:48:33.251 worker-languagedetection> [2024-09-13 14:48:33.251Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +14:48:33.263 worker-languagedetection> [2024-09-13 14:48:33.261Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +14:48:33.265 worker-languagedetection> [2024-09-13 14:48:33.264Z #007.??? INFO - - ] startup.sh: Startup scripts completed +14:48:33.267 worker-languagedetection> [2024-09-13 14:48:33.266Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +14:48:33.578 worker-languagedetection> 14:48:33,404 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +14:48:33.578 worker-languagedetection> 14:48:33,405 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +14:48:33.578 worker-languagedetection> 14:48:33,405 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +14:48:33.578 worker-languagedetection> 14:48:33,406 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +14:48:33.578 worker-languagedetection> 14:48:33,411 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +14:48:33.578 worker-languagedetection> 14:48:33,412 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +14:48:33.578 worker-languagedetection> 14:48:33,421 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +14:48:33.578 worker-languagedetection> 14:48:33,421 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +14:48:33.578 worker-languagedetection> 14:48:33,421 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +14:48:33.578 worker-languagedetection> 14:48:33,422 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +14:48:33.578 worker-languagedetection> 14:48:33,426 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +14:48:33.578 worker-languagedetection> 14:48:33,431 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +14:48:33.578 worker-languagedetection> 14:48:33,473 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +14:48:33.578 worker-languagedetection> 14:48:33,473 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +14:48:33.578 worker-languagedetection> 14:48:33,473 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +14:48:33.578 worker-languagedetection> 14:48:33,523 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +14:48:33.578 worker-languagedetection> 14:48:33,523 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +14:48:33.578 worker-languagedetection> 14:48:33,523 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +14:48:33.578 worker-languagedetection> 14:48:33,526 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +14:48:33.578 worker-languagedetection> 14:48:33,526 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +14:48:33.578 worker-languagedetection> 14:48:33,534 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +14:48:33.578 worker-languagedetection> 14:48:33,536 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +14:48:33.578 worker-languagedetection> 14:48:33,565 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +14:48:33.578 worker-languagedetection> 14:48:33,568 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +14:48:33.578 worker-languagedetection> 14:48:33,569 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +14:48:33.578 worker-languagedetection> 14:48:33,569 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +14:48:33.578 worker-languagedetection> 14:48:33,569 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +14:48:33.578 worker-languagedetection> 14:48:33,570 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +14:48:33.578 worker-languagedetection> 14:48:33,570 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +14:48:33.578 worker-languagedetection> 14:48:33,570 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +14:48:33.578 worker-languagedetection> 14:48:33,570 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 149 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY +14:48:33.578 worker-languagedetection> +14:48:33.782 worker-languagedetection> [2024-09-13 14:48:33.763Z #451.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +14:48:34.519 worker-languagedetection> [2024-09-13 14:48:34.519Z #451.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +14:48:34.521 worker-languagedetection> [2024-09-13 14:48:34.520Z #451.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +14:48:34.521 worker-languagedetection> [2024-09-13 14:48:34.521Z #451.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +14:48:34.534 worker-languagedetection> [2024-09-13 14:48:34.533Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +14:48:34.536 worker-languagedetection> [2024-09-13 14:48:34.536Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +14:48:34.538 worker-languagedetection> [2024-09-13 14:48:34.538Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +14:48:34.540 worker-languagedetection> [2024-09-13 14:48:34.539Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +14:48:34.548 worker-languagedetection> [2024-09-13 14:48:34.547Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +14:48:34.549 worker-languagedetection> [2024-09-13 14:48:34.549Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +14:48:34.550 worker-languagedetection> [2024-09-13 14:48:34.550Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +14:48:34.591 worker-languagedetection> [2024-09-13 14:48:34.590Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider +14:48:34.635 worker-languagedetection> [2024-09-13 14:48:34.629Z #451.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} +14:48:34.715 worker-languagedetection> [2024-09-13 14:48:34.715Z #451.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +14:48:34.716 worker-languagedetection> [2024-09-13 14:48:34.715Z #451.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +14:48:34.718 worker-languagedetection> [2024-09-13 14:48:34.717Z #451.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS +14:48:34.726 worker-languagedetection> [2024-09-13 14:48:34.726Z #451.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. +14:48:34.742 worker-languagedetection> [2024-09-13 14:48:34.742Z #451.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE +14:48:34.754 worker-languagedetection> [2024-09-13 14:48:34.754Z #451.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY +14:48:34.756 worker-languagedetection> [2024-09-13 14:48:34.756Z #451.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY +14:48:34.757 worker-languagedetection> [2024-09-13 14:48:34.757Z #451.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY +14:48:34.763 worker-languagedetection> [2024-09-13 14:48:34.762Z #451.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE +14:48:34.764 worker-languagedetection> [2024-09-13 14:48:34.764Z #451.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY +14:48:34.764 worker-languagedetection> [2024-09-13 14:48:34.764Z #451.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE +14:48:34.769 worker-languagedetection> +14:48:35.071 worker-languagedetection> [2024-09-13 14:48:35.071Z #451.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} +14:48:35.074 worker-languagedetection> [2024-09-13 14:48:35.073Z #451.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@2d5a1588{/,null,AVAILABLE} +14:48:35.077 worker-languagedetection> [2024-09-13 14:48:35.076Z #451.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} +14:48:35.077 worker-languagedetection> [2024-09-13 14:48:35.077Z #451.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@1c61eda5{/,null,AVAILABLE} +14:48:35.084 worker-languagedetection> [2024-09-13 14:48:35.083Z #451.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +14:48:35.085 worker-languagedetection> [2024-09-13 14:48:35.085Z #451.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +14:48:35.089 worker-languagedetection> [2024-09-13 14:48:35.088Z #451.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@517a2b0{STARTING}[11.0.23,sto=30000] @1818ms +14:48:35.148 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 12 +14:48:35.656 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:48:36.160 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:36.665 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:37.174 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:48:37.688 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 +14:48:38.193 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:38.699 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:39.204 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:39.709 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:48:40.214 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:40.718 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:41.223 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:48:41.727 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:42.233 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:42.738 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:43.245 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:48:43.758 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:48:44.262 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:48:44.774 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:45.279 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:48:45.784 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:46.290 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:46.794 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:47.303 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:47.804 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:48.309 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:48.817 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:49.322 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:48:49.764 worker-languagedetection> [2024-09-13 14:48:49.763Z #451.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE +14:48:49.827 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:50.332 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:50 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:48:50.606 worker-languagedetection> [2024-09-13 14:48:50.606Z #451.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY +14:48:50.607 worker-languagedetection> [2024-09-13 14:48:50.606Z #451.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE +14:48:50.607 worker-languagedetection> [2024-09-13 14:48:50.606Z #451.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE +14:48:50.609 worker-languagedetection> [2024-09-13 14:48:50.609Z #451.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY +14:48:50.610 worker-languagedetection> [2024-09-13 14:48:50.609Z #451.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY +14:48:50.611 worker-languagedetection> [2024-09-13 14:48:50.609Z #451.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waited on url http://localhost:8082/health-check?type=READY 17587 ms +[INFO] +[INFO] --- failsafe:3.1.2:integration-test (sqs-implementation-testing) @ worker-languagedetection-container --- +14:48:50.853 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:50 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 +[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider +[INFO] +[INFO] ------------------------------------------------------- +[INFO] T E S T S +[INFO] ------------------------------------------------------- +[INFO] Running com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT +15:48:51,546 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +15:48:51,551 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - No custom configurators were discovered as a service. +15:48:51,551 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +15:48:51,553 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +15:48:51,559 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +15:48:51,560 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +15:48:51,568 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 8 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +15:48:51,568 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +15:48:51,570 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +15:48:51,572 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +15:48:51,576 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] +15:48:51,592 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@b2c9a9c - URL [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +15:48:51,679 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +15:48:51,679 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +15:48:51,679 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +15:48:51,783 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +15:48:51,783 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +15:48:51,783 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +15:48:51,795 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +15:48:51,795 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +15:48:51,812 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +15:48:51,815 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +15:48:51,937 |-INFO in ch.qos.logback.classic.pattern.DateConverter@fa4c865 - Setting zoneId to "UTC" +15:48:51,942 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +15:48:51,942 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +15:48:51,943 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +15:48:51,945 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +15:48:51,945 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +15:48:51,945 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@3bd82cf5 - End of configuration. +15:48:51,947 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@544fa968 - Registering current configuration as safe fallback point +15:48:51,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 377 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_field_multi_lang_en_fr_ger.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_multi_datasource.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_single_datasource.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_invalid.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple_multi.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_english.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_french.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_german.yaml.testcase + +=============== Starting test Item single_lang_french.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_french.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_french.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_french.yaml +Description: null +Associated tickets: null +Comments: single_lang_french.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 1 +Number of successful test cases (all test instances passes): 1 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid_combined.yaml +================================================================================ +14:49:03.337 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:49:03 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 2 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 2 +Number of successful test cases (all test instances passes): 2 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 3 +Number of successful test cases (all test instances passes): 3 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_simple_multi.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_simple_multi.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODE_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_FR_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_GER_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_simple_multi.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_simple_multi.yaml +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 4 +Number of successful test cases (all test instances passes): 4 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown_split.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 5 +Number of successful test cases (all test instances passes): 5 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_combined.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 6 +Number of successful test cases (all test instances passes): 6 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 7 +Number of successful test cases (all test instances passes): 7 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid_split.yaml +================================================================================ +14:49:33.383 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:49:33 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 0 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 8 +Number of successful test cases (all test instances passes): 8 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item single_lang_english.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_english.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_english.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_english.yaml +Description: null +Associated tickets: null +Comments: single_lang_english.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 9 +Number of successful test cases (all test instances passes): 9 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_lang_single_datasource.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_lang_single_datasource.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_lang_single_datasource.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_lang_single_datasource.yaml +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 10 +Number of successful test cases (all test instances passes): 10 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_field_multi_lang_en_fr_ger.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_field_multi_lang_en_fr_ger.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODE_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_FR_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_GER_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_field_multi_lang_en_fr_ger.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 11 +Number of successful test cases (all test instances passes): 11 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang_combined.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 12 +Number of successful test cases (all test instances passes): 12 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 13 +Number of successful test cases (all test instances passes): 13 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang_split.yaml +================================================================================ +14:50:03.422 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:50:03 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 14 +Number of successful test cases (all test instances passes): 14 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== +14:50:06.012 worker-languagedetection> [2024-09-13 14:50:06.008Z #451.054 ERROR - - ] c.h.c.w.l.LanguageDetectionWorker: Failed to read result format specified. + +=============== Starting test Item resultFormat_invalid.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_invalid.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_invalid.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_invalid.yaml +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 15 +Number of successful test cases (all test instances passes): 15 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown_combined.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 16 +Number of successful test cases (all test instances passes): 16 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_simple.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_simple.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_simple.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_simple.yaml +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 17 +Number of successful test cases (all test instances passes): 17 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_lang_multi_datasource.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_lang_multi_datasource.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_lang_multi_datasource.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 18 +Number of successful test cases (all test instances passes): 18 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_split.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_multi_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 19 +Number of successful test cases (all test instances passes): 19 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item single_lang_german.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_german.yaml +================================================================================ +14:50:33.466 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:50:33 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_multi_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_german.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_german.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_german.yaml +Description: null +Associated tickets: null +Comments: single_lang_german.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_german.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_german.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 20 +Number of successful test cases (all test instances passes): 20 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_multi_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_german.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS +Item with id single_lang_german.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_german.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_german.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 21 +Number of successful test cases (all test instances passes): 21 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== +[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 110.0 s -- in com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT +[INFO] +[INFO] Results: +[INFO] +[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0 +[INFO] +[INFO] +[INFO] --- failsafe:3.1.2:integration-test (rabbit-implementation-testing) @ worker-languagedetection-container --- +[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider +[INFO] +[INFO] ------------------------------------------------------- +[INFO] T E S T S +[INFO] ------------------------------------------------------- +[INFO] Running com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT +15:50:42,364 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +15:50:42,369 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - No custom configurators were discovered as a service. +15:50:42,369 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +15:50:42,371 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +15:50:42,377 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +15:50:42,378 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +15:50:42,386 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 8 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +15:50:42,386 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +15:50:42,387 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +15:50:42,389 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +15:50:42,392 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] +15:50:42,413 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@b2c9a9c - URL [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +15:50:42,492 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +15:50:42,492 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +15:50:42,492 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +15:50:42,580 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +15:50:42,580 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +15:50:42,580 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +15:50:42,590 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +15:50:42,590 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +15:50:42,602 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +15:50:42,605 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +15:50:42,706 |-INFO in ch.qos.logback.classic.pattern.DateConverter@fa4c865 - Setting zoneId to "UTC" +15:50:42,711 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +15:50:42,711 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +15:50:42,711 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +15:50:42,712 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +15:50:42,712 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +15:50:42,713 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@3bd82cf5 - End of configuration. +15:50:42,713 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@544fa968 - Registering current configuration as safe fallback point +15:50:42,713 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 326 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +14:50:44.546 rabbitmq> 2024-09-13 14:50:44.545931+00:00 [info] <0.872.0> accepting AMQP connection <0.872.0> (192.168.1.1:45208 -> 172.17.0.3:5672) +14:50:44.695 rabbitmq> 2024-09-13 14:50:44.695058+00:00 [info] <0.872.0> connection <0.872.0> (192.168.1.1:45208 -> 172.17.0.3:5672): user 'guest' authenticated and granted access to vhost '/' +14:50:44.775 rabbitmq> 2024-09-13 14:50:44.774739+00:00 [notice] <0.893.0> queue 'LanguageDetectionWorker-input-1' in vhost '/': candidate -> leader in term: 1 machine version: 3 +14:50:44.775 rabbitmq> 2024-09-13 14:50:44.775171+00:00 [info] <0.882.0> ra: started cluster %2F_LanguageDetectionWorker-input-1 with 1 servers +14:50:44.775 rabbitmq> 2024-09-13 14:50:44.775171+00:00 [info] <0.882.0> 0 servers failed to start: [] +14:50:44.775 rabbitmq> 2024-09-13 14:50:44.775171+00:00 [info] <0.882.0> Leader: {'%2F_LanguageDetectionWorker-input-1',rabbit@6a79a46cf398} +14:50:44.841 rabbitmq> 2024-09-13 14:50:44.841266+00:00 [notice] <0.900.0> queue 'LanguageDetectionWorker-output-1' in vhost '/': candidate -> leader in term: 1 machine version: 3 +14:50:44.841 rabbitmq> 2024-09-13 14:50:44.841447+00:00 [info] <0.887.0> ra: started cluster %2F_LanguageDetectionWorker-output-1 with 1 servers +14:50:44.842 rabbitmq> 2024-09-13 14:50:44.841447+00:00 [info] <0.887.0> 0 servers failed to start: [] +14:50:44.842 rabbitmq> 2024-09-13 14:50:44.841447+00:00 [info] <0.887.0> Leader: {'%2F_LanguageDetectionWorker-output-1',rabbit@6a79a46cf398} +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_field_multi_lang_en_fr_ger.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_multi_datasource.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_single_datasource.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_invalid.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple_multi.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_english.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_french.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_german.yaml.testcase + +=============== Starting test Item resultFormat_complex_invalid_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid_combined.yaml +================================================================================ +14:51:03.527 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:51:03 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 +14:51:20.642 worker-languagedetection> [2024-09-13 14:51:20.642Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue OWFjNWQyMjItNjI5Yi00ZmU4LThlYzgtZWQzMGU0ZjQyMzJkIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAxYzQyMmYwYi1mMzhhLTQyOWMtODgxYi1iMTc1NWY1Y2ZjM2QgMTcyNjIzODkzNS42NzMyOTI= for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: OWFjNWQyMjItNjI5Yi00ZmU4LThlYzgtZWQzMGU0ZjQyMzJkIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAxYzQyMmYwYi1mMzhhLTQyOWMtODgxYi1iMTc1NWY1Y2ZjM2QgMTcyNjIzODkzNS42NzMyOTI="} +14:51:20.643 worker-languagedetection> [2024-09-13 14:51:20.642Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue ZjA5ZTc4N2UtNmNmMS00MzI1LThlMDQtNDZmNDI0NTg0MzU3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA5ZjZkMWM5MS04MjlhLTQ4ZmYtOTY1Mi05NzdmYjE2OWVmYjIgMTcyNjIzODk0MC43NzYyODg3 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: ZjA5ZTc4N2UtNmNmMS00MzI1LThlMDQtNDZmNDI0NTg0MzU3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA5ZjZkMWM5MS04MjlhLTQ4ZmYtOTY1Mi05NzdmYjE2OWVmYjIgMTcyNjIzODk0MC43NzYyODg3"} +14:51:20.643 worker-languagedetection> [2024-09-13 14:51:20.643Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue YTY1OTIyOWUtNTEyMC00ODhiLWEzMTgtNWY1NzEyM2EyZjY5IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA4ZTJhOGIxNy1kNTkyLTQ2ZTQtYjhlNi1hZTVkMTQyMjQ5YjQgMTcyNjIzODk0NS43MDI1OTg= for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: YTY1OTIyOWUtNTEyMC00ODhiLWEzMTgtNWY1NzEyM2EyZjY5IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA4ZTJhOGIxNy1kNTkyLTQ2ZTQtYjhlNi1hZTVkMTQyMjQ5YjQgMTcyNjIzODk0NS43MDI1OTg="} +14:51:20.643 worker-languagedetection> [2024-09-13 14:51:20.643Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue Y2E0NjAzOTMtMWY4MC00Y2NjLTgyMjgtMmRhMzcyMTgyMjY5IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBjODNmZjBiYi02NjlhLTQxMGEtOWFjZi1kMGVkZTdjOGM5ZjUgMTcyNjIzODk1MC43Mzc5NDU= for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: Y2E0NjAzOTMtMWY4MC00Y2NjLTgyMjgtMmRhMzcyMTgyMjY5IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBjODNmZjBiYi02NjlhLTQxMGEtOWFjZi1kMGVkZTdjOGM5ZjUgMTcyNjIzODk1MC43Mzc5NDU="} +14:51:20.643 worker-languagedetection> [2024-09-13 14:51:20.643Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue NGJiZWZkYmYtOTM1NC00ZWIzLWFiYWQtOGQxN2Q5NzdiZDExIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA1YTk0OTkwMC0yMThlLTQ1ZTUtYTU0My01NTVhYjQyNGE5ZjkgMTcyNjIzODk1NS43NDc5NzYz for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: NGJiZWZkYmYtOTM1NC00ZWIzLWFiYWQtOGQxN2Q5NzdiZDExIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA1YTk0OTkwMC0yMThlLTQ1ZTUtYTU0My01NTVhYjQyNGE5ZjkgMTcyNjIzODk1NS43NDc5NzYz"} +14:51:20.643 worker-languagedetection> [2024-09-13 14:51:20.643Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue NWYzNGM0YjYtMmJkYS00YWEwLTgyZTgtNzAwNzQ3MmI1ZGIwIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAwNDJiNzUxNi1kYjhlLTRhZGYtOGNiMC1lY2E4ZmVkYTAxOTggMTcyNjIzODk2MC43NjI1NzQ3 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: NWYzNGM0YjYtMmJkYS00YWEwLTgyZTgtNzAwNzQ3MmI1ZGIwIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAwNDJiNzUxNi1kYjhlLTRhZGYtOGNiMC1lY2E4ZmVkYTAxOTggMTcyNjIzODk2MC43NjI1NzQ3"} +14:51:20.643 worker-languagedetection> [2024-09-13 14:51:20.643Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue ZTBlNDBlYzgtZWZlZi00NWZlLWIxMmItOGQ4ZjkxMjdkMzQwIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAwMTVhMDc4ZS05ZGY4LTRmNzEtOWIzYi04ZWIxMjg3M2YxYzQgMTcyNjIzODk2NS43OTg5OTM2 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: ZTBlNDBlYzgtZWZlZi00NWZlLWIxMmItOGQ4ZjkxMjdkMzQwIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAwMTVhMDc4ZS05ZGY4LTRmNzEtOWIzYi04ZWIxMjg3M2YxYzQgMTcyNjIzODk2NS43OTg5OTM2"} +14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.643Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue ZTI5MDk5OWYtNWIyMy00NjRiLTlhYTEtNGUyZGNhYjA2NGUyIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBiNDRmYmY2ZS1kZThmLTQ4NzUtYjhiMS1hYzdmOTU1YWNmYzUgMTcyNjIzODk3MC44MDIwOTU0 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: ZTI5MDk5OWYtNWIyMy00NjRiLTlhYTEtNGUyZGNhYjA2NGUyIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBiNDRmYmY2ZS1kZThmLTQ4NzUtYjhiMS1hYzdmOTU1YWNmYzUgMTcyNjIzODk3MC44MDIwOTU0"} +14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.643Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue NzIwOWFmYmUtZWE0YS00MTI2LWE1YjMtMmE4MDVlOWJiMjNjIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAwOGM5MTY0Mi0yYWYwLTQwMzMtYjZlNy05NDhmZjUyOGU2NzcgMTcyNjIzODk3NS44MTEzMDAz for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: NzIwOWFmYmUtZWE0YS00MTI2LWE1YjMtMmE4MDVlOWJiMjNjIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAwOGM5MTY0Mi0yYWYwLTQwMzMtYjZlNy05NDhmZjUyOGU2NzcgMTcyNjIzODk3NS44MTEzMDAz"} +14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue YjU3ZWIyNTItZDg3Mi00NTc1LTgxYjctMGEzNGExMzQ4ODc3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAxNDI2MmZkYi02MjE3LTQyM2UtOWE3ZC02Nzg1OGJkMDU4YTggMTcyNjIzODk4MC44MzcxNDE1 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: YjU3ZWIyNTItZDg3Mi00NTc1LTgxYjctMGEzNGExMzQ4ODc3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAxNDI2MmZkYi02MjE3LTQyM2UtOWE3ZC02Nzg1OGJkMDU4YTggMTcyNjIzODk4MC44MzcxNDE1"} +14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue MjY3MGQyMTAtMDdkYi00MDUwLTk4NDktZjVhNmRkZDU1NTE1IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAyMzAyY2QwOS1kY2M4LTRmNjctOGFmZi05M2I0ODkwOGI1NTcgMTcyNjIzODk4NS44NTM1MDU4 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: MjY3MGQyMTAtMDdkYi00MDUwLTk4NDktZjVhNmRkZDU1NTE1IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAyMzAyY2QwOS1kY2M4LTRmNjctOGFmZi05M2I0ODkwOGI1NTcgMTcyNjIzODk4NS44NTM1MDU4"} +14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue OTNiOTdhNmUtMzUxNy00MmFiLTkzMjMtZjg1ZWJiMzUxMGE0IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA3MTI0MGZmMy01NWFkLTQyN2ItOTFkYS02M2UwODBkNjY4MzUgMTcyNjIzODk5MC44NjY4Nzc4 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: OTNiOTdhNmUtMzUxNy00MmFiLTkzMjMtZjg1ZWJiMzUxMGE0IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA3MTI0MGZmMy01NWFkLTQyN2ItOTFkYS02M2UwODBkNjY4MzUgMTcyNjIzODk5MC44NjY4Nzc4"} +14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue MGQ1YmZlYzUtY2YxOC00MWMxLTk4MmYtNmY0NDYzNjA5NWU5IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA3ZWY3MzQ1Ni03NTliLTQ5M2QtOTkwNS00MGRjNDQzN2E3NjggMTcyNjIzODk5NS44OTg1OTI1 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: MGQ1YmZlYzUtY2YxOC00MWMxLTk4MmYtNmY0NDYzNjA5NWU5IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA3ZWY3MzQ1Ni03NTliLTQ5M2QtOTkwNS00MGRjNDQzN2E3NjggMTcyNjIzODk5NS44OTg1OTI1"} +14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue ZWQ5NmIwNzYtM2FkMC00OTZiLWEzNTMtMTc3MWQwZGM1MzJmIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBmNWMyOGQ2ZS1iYjkxLTQ5NmMtOThiMC1mZWRlYzc5NmMwNDMgMTcyNjIzOTAwMC45NjkwMjc1 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: ZWQ5NmIwNzYtM2FkMC00OTZiLWEzNTMtMTc3MWQwZGM1MzJmIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBmNWMyOGQ2ZS1iYjkxLTQ5NmMtOThiMC1mZWRlYzc5NmMwNDMgMTcyNjIzOTAwMC45NjkwMjc1"} +14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue M2UxNGFhOTctM2U1Zi00MDk2LWI3YjctMjgyNzIzMThkNmU3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBhNTg0MTk3MC1lNDc0LTQ1NGYtOTIyYS1kMjU4NTQzNjM0NjcgMTcyNjIzOTAwNi4wMDU2NTM= for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: M2UxNGFhOTctM2U1Zi00MDk2LWI3YjctMjgyNzIzMThkNmU3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBhNTg0MTk3MC1lNDc0LTQ1NGYtOTIyYS1kMjU4NTQzNjM0NjcgMTcyNjIzOTAwNi4wMDU2NTM="} +14:51:20.651 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue ZGYxODU0MWYtOGQzOS00ZmQ2LTg0NzAtZjk3YzI1ZWM3OTU0IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA5ZWQ2ZDg4My1mYWFjLTQyY2QtYWQyZi02ZWExOTJjYWQ4ZGYgMTcyNjIzOTAxMS4wMjYzMTM1 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: ZGYxODU0MWYtOGQzOS00ZmQ2LTg0NzAtZjk3YzI1ZWM3OTU0IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA5ZWQ2ZDg4My1mYWFjLTQyY2QtYWQyZi02ZWExOTJjYWQ4ZGYgMTcyNjIzOTAxMS4wMjYzMTM1"} +14:51:20.651 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue ODQxNWRkNmMtNWM5Ni00Mzk2LTk4NGEtNThhYzc4NWJkYzM3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBmYmFiODY1OC01ZDZlLTRlZmItOGE5Ni01MjQ4OWZmYzhkOGIgMTcyNjIzOTAxNi4wMzgyNjY3 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: ODQxNWRkNmMtNWM5Ni00Mzk2LTk4NGEtNThhYzc4NWJkYzM3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBmYmFiODY1OC01ZDZlLTRlZmItOGE5Ni01MjQ4OWZmYzhkOGIgMTcyNjIzOTAxNi4wMzgyNjY3"} +14:51:20.651 worker-languagedetection> [2024-09-13 14:51:20.645Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue NDMyOTlmYmQtODIxYS00ODU4LWE1MTktMDBjYTAwY2RkZjg4IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBlM2Q3NjY5MS01YTNmLTRiYWItOWZiYy0yOWQwNDAzOGM0ZDkgMTcyNjIzOTAyMS4wODExMTg= for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: NDMyOTlmYmQtODIxYS00ODU4LWE1MTktMDBjYTAwY2RkZjg4IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBlM2Q3NjY5MS01YTNmLTRiYWItOWZiYy0yOWQwNDAzOGM0ZDkgMTcyNjIzOTAyMS4wODExMTg="} +14:51:20.651 worker-languagedetection> [2024-09-13 14:51:20.645Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue NDMzZTMxZWEtNDAxOC00NGRmLWIwMGUtZmM3ODJiMmZiNjU0IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBmNzdmZmQ4NS03NTBhLTQ1N2EtOGU0Ny03YzAwMWYyZjA5ZTIgMTcyNjIzOTAyNi4xMDg1NzY1 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: NDMzZTMxZWEtNDAxOC00NGRmLWIwMGUtZmM3ODJiMmZiNjU0IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBmNzdmZmQ4NS03NTBhLTQ1N2EtOGU0Ny03YzAwMWYyZjA5ZTIgMTcyNjIzOTAyNi4xMDg1NzY1"} +14:51:20.651 worker-languagedetection> [2024-09-13 14:51:20.645Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue YTg2YWUyMDktMTg4NS00ODQ1LWE5MWMtZWY0MmVjNzE2MDRjIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA5OTNmNDQyYS04NjIwLTQyNjgtOWIzNS02Zjk3MmQyNTY0MzYgMTcyNjIzOTAzMS4xNTM3NzA3 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: YTg2YWUyMDktMTg4NS00ODQ1LWE5MWMtZWY0MmVjNzE2MDRjIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA5OTNmNDQyYS04NjIwLTQyNjgtOWIzNS02Zjk3MmQyNTY0MzYgMTcyNjIzOTAzMS4xNTM3NzA3"} +14:51:33.574 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:51:33 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 +14:52:03.617 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:52:03 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 +[INFO] Scanning for projects... +[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] +[INFO] Inspecting build with total of 1 modules... +[INFO] Installing Nexus Staging features: +[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin +[INFO] +[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- +[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT +[INFO] from pom.xml +[INFO] --------------------------------[ pom ]--------------------------------- +[INFO] +[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] +[INFO] +[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- +[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target +[INFO] +[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- +[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed +[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed +[INFO] +[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- +[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true +[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container +[INFO] Git info extracted in 280ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' +[INFO] +[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- +[INFO] Using plugin classloader, includes GMavenPlus and project classpath. +[INFO] Using Groovy 3.0.19 to perform execute. +[INFO] +[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- +[INFO] Updating license headers... +[INFO] +[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- +[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar +[INFO] +[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- +[INFO] Copying 2 resources from src/main/config to target/config-files +[INFO] +[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- +[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox +[INFO] DOCKER> +[INFO] DOCKER> ---> 6fd955f66c23 +[INFO] DOCKER> Step 2/4 : COPY maven /config/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 8be7948e3c01 +[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> ef52e370b90f +[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 1f97ff59e5f4 +[INFO] DOCKER> Successfully built 1f97ff59e5f4 +[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:1f97f +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Created docker-build.tar in 1 minute and 4 seconds +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 +[INFO] DOCKER> +[INFO] DOCKER> ---> 0f51baaf46f5 +[INFO] DOCKER> Step 2/4 : COPY maven /maven/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 91e7f56ef8cf +[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 002fc83963fa +[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 2adee4e4f048 +[INFO] DOCKER> Successfully built 2adee4e4f048 +[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Built image sha256:2adee +[INFO] +[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- +[INFO] Changes detected - recompiling the module! :source +[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes +[INFO] +[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- +[INFO] +[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- +[INFO] Not executing Javadoc as the project is not a Java classpath-capable package +[INFO] +[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container e2f8be125ba7 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. +14:57:14.871 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf +14:57:14.873 webdav> + getent passwd 33 +14:57:14.874 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin +14:57:14.874 webdav> + useradd -r webdav -u 33 -g 33 +14:57:14.905 webdav> useradd: UID 33 is not unique +14:57:14.905 webdav> + mkdir -p /srv/common/webdav +14:57:14.907 webdav> + chown 33 /srv/common/webdav +14:57:14.908 webdav> + trap _term SIGTERM +14:57:14.908 webdav> + pid=12 +14:57:14.908 webdav> + wait 12 +14:57:14.909 webdav> + /usr/sbin/apache2 -D FOREGROUND +14:57:14.923 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +14:57:14.927 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +14:57:14.929 webdav> [Fri Sep 13 14:57:14.929014 2024] [mpm_event:notice] [pid 12:tid 140495996053376] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations +14:57:14.929 webdav> [Fri Sep 13 14:57:14.929301 2024] [core:notice] [pid 12:tid 140495996053376] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' +14:57:15.032 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:14:57:15 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" +[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 122 ms +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Start container b99d74a1c69c +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waiting on url http://localhost:15672 with method HEAD for status 200..399. +14:57:19.322 rabbitmq> 2024-09-13 14:57:19.315666+00:00 [notice] <0.44.0> Application syslog exited with reason: stopped +14:57:19.322 rabbitmq> 2024-09-13 14:57:19.321749+00:00 [notice] <0.254.0> Logging: switching to configured handler(s); following messages may not be visible in this log output +14:57:19.322 rabbitmq> 2024-09-13 14:57:19.322268+00:00 [notice] <0.254.0> Logging: configured log handlers are now ACTIVE +14:57:19.333 rabbitmq> 2024-09-13 14:57:19.332741+00:00 [info] <0.254.0> ra: starting system quorum_queues +14:57:19.333 rabbitmq> 2024-09-13 14:57:19.332824+00:00 [info] <0.254.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/quorum/rabbit@b99d74a1c69c +14:57:19.399 rabbitmq> 2024-09-13 14:57:19.398775+00:00 [info] <0.268.0> ra system 'quorum_queues' running pre init for 0 registered servers +14:57:19.412 rabbitmq> 2024-09-13 14:57:19.412484+00:00 [info] <0.269.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered +14:57:19.430 rabbitmq> 2024-09-13 14:57:19.430241+00:00 [notice] <0.274.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables +14:57:19.454 rabbitmq> 2024-09-13 14:57:19.454261+00:00 [info] <0.254.0> ra: starting system coordination +14:57:19.454 rabbitmq> 2024-09-13 14:57:19.454322+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/coordination/rabbit@b99d74a1c69c +14:57:19.457 rabbitmq> 2024-09-13 14:57:19.456980+00:00 [info] <0.282.0> ra system 'coordination' running pre init for 0 registered servers +14:57:19.458 rabbitmq> 2024-09-13 14:57:19.458421+00:00 [info] <0.283.0> ra: meta data store initialised for system coordination. 0 record(s) recovered +14:57:19.458 rabbitmq> 2024-09-13 14:57:19.458643+00:00 [notice] <0.288.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables +14:57:19.469 rabbitmq> 2024-09-13 14:57:19.468228+00:00 [info] <0.254.0> ra: starting system coordination +14:57:19.469 rabbitmq> 2024-09-13 14:57:19.468337+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/coordination/rabbit@b99d74a1c69c +14:57:19.605 rabbitmq> 2024-09-13 14:57:19.604649+00:00 [info] <0.254.0> Waiting for Khepri leader for 30000 ms, 9 retries left +14:57:19.621 rabbitmq> 2024-09-13 14:57:19.621470+00:00 [notice] <0.292.0> RabbitMQ metadata store: candidate -> leader in term: 1 machine version: 1 +14:57:19.631 rabbitmq> 2024-09-13 14:57:19.630999+00:00 [info] <0.254.0> Khepri leader elected +14:57:19.631 rabbitmq> 2024-09-13 14:57:19.631061+00:00 [info] <0.254.0> Waiting for Khepri projections for 30000 ms, 9 retries left +14:57:20.051 rabbitmq> 2024-09-13 14:57:20.051560+00:00 [info] <0.254.0> +14:57:20.051 rabbitmq> 2024-09-13 14:57:20.051560+00:00 [info] <0.254.0> Starting RabbitMQ 3.13.7 on Erlang 26.2.5.3 [jit] +14:57:20.051 rabbitmq> 2024-09-13 14:57:20.051560+00:00 [info] <0.254.0> Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries +14:57:20.051 rabbitmq> 2024-09-13 14:57:20.051560+00:00 [info] <0.254.0> Licensed under the MPL 2.0. Website: https://rabbitmq.com +14:57:20.054 rabbitmq> +14:57:20.054 rabbitmq> ## ## RabbitMQ 3.13.7 +14:57:20.054 rabbitmq> ## ## +14:57:20.054 rabbitmq> ########## Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries +14:57:20.054 rabbitmq> ###### ## +14:57:20.054 rabbitmq> ########## Licensed under the MPL 2.0. Website: https://rabbitmq.com +14:57:20.054 rabbitmq> +14:57:20.054 rabbitmq> Erlang: 26.2.5.3 [jit] +14:57:20.054 rabbitmq> TLS Library: OpenSSL - OpenSSL 3.1.7 3 Sep 2024 +14:57:20.054 rabbitmq> Release series support status: see https://www.rabbitmq.com/release-information +14:57:20.054 rabbitmq> +14:57:20.054 rabbitmq> Doc guides: https://www.rabbitmq.com/docs +14:57:20.054 rabbitmq> Support: https://www.rabbitmq.com/docs/contact +14:57:20.054 rabbitmq> Tutorials: https://www.rabbitmq.com/tutorials +14:57:20.054 rabbitmq> Monitoring: https://www.rabbitmq.com/docs/monitoring +14:57:20.054 rabbitmq> Upgrading: https://www.rabbitmq.com/docs/upgrade +14:57:20.054 rabbitmq> +14:57:20.054 rabbitmq> Logs: +14:57:20.054 rabbitmq> +14:57:20.054 rabbitmq> Config file(s): /etc/rabbitmq/conf.d/10-defaults.conf +14:57:20.054 rabbitmq> +14:57:20.055 rabbitmq> Starting broker...2024-09-13 14:57:20.054410+00:00 [info] <0.254.0> +14:57:20.055 rabbitmq> 2024-09-13 14:57:20.054410+00:00 [info] <0.254.0> node : rabbit@b99d74a1c69c +14:57:20.055 rabbitmq> 2024-09-13 14:57:20.054410+00:00 [info] <0.254.0> home dir : /var/lib/rabbitmq +14:57:20.055 rabbitmq> 2024-09-13 14:57:20.054410+00:00 [info] <0.254.0> config file(s) : /etc/rabbitmq/conf.d/10-defaults.conf +14:57:20.055 rabbitmq> 2024-09-13 14:57:20.054410+00:00 [info] <0.254.0> cookie hash : DtrVpf+NDyAIx8ItysiyZQ== +14:57:20.055 rabbitmq> 2024-09-13 14:57:20.054410+00:00 [info] <0.254.0> log(s) : +14:57:20.055 rabbitmq> 2024-09-13 14:57:20.054410+00:00 [info] <0.254.0> data dir : /var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c +14:57:20.402 rabbitmq> 2024-09-13 14:57:20.402504+00:00 [info] <0.254.0> Running boot step pre_boot defined by app rabbit +14:57:20.403 rabbitmq> 2024-09-13 14:57:20.402572+00:00 [info] <0.254.0> Running boot step rabbit_global_counters defined by app rabbit +14:57:20.403 rabbitmq> 2024-09-13 14:57:20.402805+00:00 [info] <0.254.0> Running boot step rabbit_osiris_metrics defined by app rabbit +14:57:20.403 rabbitmq> 2024-09-13 14:57:20.402894+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics defined by app rabbit +14:57:20.403 rabbitmq> 2024-09-13 14:57:20.403137+00:00 [info] <0.254.0> Running boot step rabbit_alarm defined by app rabbit +14:57:20.415 rabbitmq> 2024-09-13 14:57:20.415269+00:00 [info] <0.329.0> Memory high watermark set to 6399 MiB (6710412902 bytes) of 15998 MiB (16776032256 bytes) total +14:57:20.418 rabbitmq> 2024-09-13 14:57:20.418166+00:00 [info] <0.331.0> Enabling free disk space monitoring (disk free space: 969863970816, total memory: 16776032256) +14:57:20.418 rabbitmq> 2024-09-13 14:57:20.418221+00:00 [info] <0.331.0> Disk free limit set to 50MB +14:57:20.420 rabbitmq> 2024-09-13 14:57:20.420384+00:00 [info] <0.254.0> Running boot step code_server_cache defined by app rabbit +14:57:20.420 rabbitmq> 2024-09-13 14:57:20.420489+00:00 [info] <0.254.0> Running boot step file_handle_cache defined by app rabbit +14:57:20.429 rabbitmq> 2024-09-13 14:57:20.428703+00:00 [info] <0.334.0> Limiting to approx 1048479 file handles (943629 sockets) +14:57:20.429 rabbitmq> 2024-09-13 14:57:20.428843+00:00 [info] <0.335.0> FHC read buffering: OFF +14:57:20.429 rabbitmq> 2024-09-13 14:57:20.428878+00:00 [info] <0.335.0> FHC write buffering: ON +14:57:20.429 rabbitmq> 2024-09-13 14:57:20.429337+00:00 [info] <0.254.0> Running boot step worker_pool defined by app rabbit +14:57:20.431 rabbitmq> 2024-09-13 14:57:20.429452+00:00 [info] <0.315.0> Will use 4 processes for default worker pool +14:57:20.431 rabbitmq> 2024-09-13 14:57:20.429494+00:00 [info] <0.315.0> Starting worker pool 'worker_pool' with 4 processes in it +14:57:20.431 rabbitmq> 2024-09-13 14:57:20.429856+00:00 [info] <0.254.0> Running boot step database defined by app rabbit +14:57:20.431 rabbitmq> 2024-09-13 14:57:20.430162+00:00 [info] <0.254.0> Peer discovery: configured backend: rabbit_peer_discovery_classic_config +14:57:20.432 rabbitmq> 2024-09-13 14:57:20.431321+00:00 [notice] <0.316.0> Feature flags: attempt to enable `detailed_queues_endpoint`... +14:57:20.500 rabbitmq> 2024-09-13 14:57:20.500343+00:00 [notice] <0.316.0> Feature flags: `detailed_queues_endpoint` enabled +14:57:20.500 rabbitmq> 2024-09-13 14:57:20.500479+00:00 [notice] <0.316.0> Feature flags: attempt to enable `quorum_queue_non_voters`... +14:57:20.571 rabbitmq> 2024-09-13 14:57:20.570838+00:00 [notice] <0.316.0> Feature flags: `quorum_queue_non_voters` enabled +14:57:20.571 rabbitmq> 2024-09-13 14:57:20.571009+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_update_config_command`... +14:57:20.640 rabbitmq> 2024-09-13 14:57:20.640190+00:00 [notice] <0.316.0> Feature flags: `stream_update_config_command` enabled +14:57:20.640 rabbitmq> 2024-09-13 14:57:20.640320+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_filtering`... +14:57:20.711 rabbitmq> 2024-09-13 14:57:20.711213+00:00 [notice] <0.316.0> Feature flags: `stream_filtering` enabled +14:57:20.713 rabbitmq> 2024-09-13 14:57:20.711322+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_sac_coordinator_unblock_group`... +14:57:20.779 rabbitmq> 2024-09-13 14:57:20.778706+00:00 [notice] <0.316.0> Feature flags: `stream_sac_coordinator_unblock_group` enabled +14:57:20.780 rabbitmq> 2024-09-13 14:57:20.778953+00:00 [notice] <0.316.0> Feature flags: attempt to enable `restart_streams`... +14:57:20.851 rabbitmq> 2024-09-13 14:57:20.851162+00:00 [notice] <0.316.0> Feature flags: `restart_streams` enabled +14:57:20.851 rabbitmq> 2024-09-13 14:57:20.851276+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers`... +14:57:20.922 rabbitmq> 2024-09-13 14:57:20.922008+00:00 [notice] <0.316.0> Feature flags: `message_containers` enabled +14:57:20.922 rabbitmq> 2024-09-13 14:57:20.922172+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers_deaths_v2`... +14:57:20.993 rabbitmq> 2024-09-13 14:57:20.992911+00:00 [notice] <0.316.0> Feature flags: `message_containers_deaths_v2` enabled +14:57:20.993 rabbitmq> 2024-09-13 14:57:20.993175+00:00 [info] <0.254.0> DB: virgin node -> run peer discovery +14:57:20.993 rabbitmq> 2024-09-13 14:57:20.993237+00:00 [warning] <0.254.0> Classic peer discovery backend: list of nodes does not contain the local node [] +14:57:21.006 rabbitmq> 2024-09-13 14:57:21.006531+00:00 [notice] <0.44.0> Application mnesia exited with reason: stopped +14:57:21.294 rabbitmq> 2024-09-13 14:57:21.294241+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +14:57:21.294 rabbitmq> 2024-09-13 14:57:21.294372+00:00 [info] <0.254.0> Successfully synced tables from a peer +14:57:21.295 rabbitmq> 2024-09-13 14:57:21.294455+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +14:57:21.295 rabbitmq> 2024-09-13 14:57:21.295359+00:00 [info] <0.254.0> Successfully synced tables from a peer +14:57:21.317 rabbitmq> 2024-09-13 14:57:21.317296+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +14:57:21.317 rabbitmq> 2024-09-13 14:57:21.317444+00:00 [info] <0.254.0> Successfully synced tables from a peer +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.317633+00:00 [info] <0.254.0> Running boot step tracking_metadata_store defined by app rabbit +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.317705+00:00 [info] <0.558.0> Setting up a table for connection tracking on this node: tracked_connection +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.317772+00:00 [info] <0.558.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.317820+00:00 [info] <0.558.0> Setting up a table for per-user connection counting on this node: tracked_connection_per_user +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.317860+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.317928+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel_per_user +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318000+00:00 [info] <0.254.0> Running boot step networking_metadata_store defined by app rabbit +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318040+00:00 [info] <0.254.0> Running boot step feature_flags defined by app rabbit +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318125+00:00 [info] <0.254.0> Running boot step codec_correctness_check defined by app rabbit +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318151+00:00 [info] <0.254.0> Running boot step external_infrastructure defined by app rabbit +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318168+00:00 [info] <0.254.0> Running boot step rabbit_event defined by app rabbit +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318379+00:00 [info] <0.254.0> Running boot step rabbit_registry defined by app rabbit +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318494+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318596+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318641+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318715+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_direct defined by app rabbit +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318768+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit +14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318827+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_headers defined by app rabbit +14:57:21.319 rabbitmq> 2024-09-13 14:57:21.318864+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_topic defined by app rabbit +14:57:21.319 rabbitmq> 2024-09-13 14:57:21.318896+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit +14:57:21.319 rabbitmq> 2024-09-13 14:57:21.318933+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit +14:57:21.322 rabbitmq> 2024-09-13 14:57:21.319047+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit +14:57:21.322 rabbitmq> 2024-09-13 14:57:21.322637+00:00 [info] <0.254.0> Running boot step rabbit_priority_queue defined by app rabbit +14:57:21.323 rabbitmq> 2024-09-13 14:57:21.322675+00:00 [info] <0.254.0> Priority queues enabled, real BQ is rabbit_variable_queue +14:57:21.324 rabbitmq> 2024-09-13 14:57:21.322727+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_client_local defined by app rabbit +14:57:21.324 rabbitmq> 2024-09-13 14:57:21.322830+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit +14:57:21.324 rabbitmq> 2024-09-13 14:57:21.322891+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_random defined by app rabbit +14:57:21.324 rabbitmq> 2024-09-13 14:57:21.323246+00:00 [info] <0.254.0> Running boot step kernel_ready defined by app rabbit +14:57:21.325 rabbitmq> 2024-09-13 14:57:21.323300+00:00 [info] <0.254.0> Running boot step rabbit_sysmon_minder defined by app rabbit +14:57:21.325 rabbitmq> 2024-09-13 14:57:21.324870+00:00 [info] <0.254.0> Running boot step rabbit_epmd_monitor defined by app rabbit +14:57:21.326 rabbitmq> 2024-09-13 14:57:21.326064+00:00 [info] <0.566.0> epmd monitor knows us, inter-node communication (distribution) port: 25672 +14:57:21.326 rabbitmq> 2024-09-13 14:57:21.326205+00:00 [info] <0.254.0> Running boot step guid_generator defined by app rabbit +14:57:21.334 rabbitmq> 2024-09-13 14:57:21.333850+00:00 [info] <0.254.0> Running boot step rabbit_node_monitor defined by app rabbit +14:57:21.334 rabbitmq> 2024-09-13 14:57:21.334169+00:00 [info] <0.570.0> Starting rabbit_node_monitor (in ignore mode) +14:57:21.334 rabbitmq> 2024-09-13 14:57:21.334263+00:00 [info] <0.254.0> Running boot step delegate_sup defined by app rabbit +14:57:21.335 rabbitmq> 2024-09-13 14:57:21.334557+00:00 [info] <0.254.0> Running boot step rabbit_memory_monitor defined by app rabbit +14:57:21.335 rabbitmq> 2024-09-13 14:57:21.334719+00:00 [info] <0.254.0> Running boot step rabbit_fifo_dlx_sup defined by app rabbit +14:57:21.335 rabbitmq> 2024-09-13 14:57:21.334788+00:00 [info] <0.254.0> Running boot step core_initialized defined by app rabbit +14:57:21.335 rabbitmq> 2024-09-13 14:57:21.334820+00:00 [info] <0.254.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit +14:57:21.335 rabbitmq> 2024-09-13 14:57:21.334899+00:00 [info] <0.254.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit +14:57:21.335 rabbitmq> 2024-09-13 14:57:21.334962+00:00 [info] <0.254.0> Running boot step rabbit_definitions_hashing defined by app rabbit +14:57:21.335 rabbitmq> 2024-09-13 14:57:21.335031+00:00 [info] <0.254.0> Running boot step rabbit_exchange_parameters defined by app rabbit +14:57:21.369 rabbitmq> 2024-09-13 14:57:21.369487+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit +14:57:21.370 rabbitmq> 2024-09-13 14:57:21.369859+00:00 [info] <0.254.0> Running boot step rabbit_policies defined by app rabbit +14:57:21.370 rabbitmq> 2024-09-13 14:57:21.370052+00:00 [info] <0.254.0> Running boot step rabbit_policy defined by app rabbit +14:57:21.371 rabbitmq> 2024-09-13 14:57:21.370092+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_validator defined by app rabbit +14:57:21.371 rabbitmq> 2024-09-13 14:57:21.370267+00:00 [info] <0.254.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit +14:57:21.371 rabbitmq> 2024-09-13 14:57:21.370340+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue defined by app rabbit +14:57:21.371 rabbitmq> 2024-09-13 14:57:21.370470+00:00 [info] <0.254.0> Running boot step rabbit_stream_coordinator defined by app rabbit +14:57:21.371 rabbitmq> 2024-09-13 14:57:21.370838+00:00 [info] <0.254.0> Running boot step rabbit_vhost_limit defined by app rabbit +14:57:21.371 rabbitmq> 2024-09-13 14:57:21.370992+00:00 [info] <0.254.0> Running boot step rabbit_federation_parameters defined by app rabbitmq_federation +14:57:21.372 rabbitmq> 2024-09-13 14:57:21.371220+00:00 [info] <0.254.0> Running boot step rabbit_federation_supervisor defined by app rabbitmq_federation +14:57:21.381 rabbitmq> 2024-09-13 14:57:21.380919+00:00 [info] <0.254.0> Running boot step rabbit_federation_queue defined by app rabbitmq_federation +14:57:21.381 rabbitmq> 2024-09-13 14:57:21.381120+00:00 [info] <0.254.0> Running boot step rabbit_federation_upstream_exchange defined by app rabbitmq_federation +14:57:21.381 rabbitmq> 2024-09-13 14:57:21.381245+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management +14:57:21.381 rabbitmq> 2024-09-13 14:57:21.381320+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent +14:57:21.381 rabbitmq> 2024-09-13 14:57:21.381355+00:00 [info] <0.254.0> Management plugin: using rates mode 'basic' +14:57:21.382 rabbitmq> 2024-09-13 14:57:21.381517+00:00 [info] <0.254.0> Running boot step recovery defined by app rabbit +14:57:21.394 rabbitmq> 2024-09-13 14:57:21.394530+00:00 [info] <0.254.0> Running boot step empty_db_check defined by app rabbit +14:57:21.395 rabbitmq> 2024-09-13 14:57:21.394633+00:00 [info] <0.254.0> Will seed default virtual host and user... +14:57:21.395 rabbitmq> 2024-09-13 14:57:21.394764+00:00 [info] <0.254.0> Adding vhost '/' (description: 'Default virtual host', tags: []) +14:57:21.451 rabbitmq> 2024-09-13 14:57:21.451193+00:00 [info] <0.630.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists +14:57:21.453 rabbitmq> 2024-09-13 14:57:21.453630+00:00 [info] <0.630.0> Setting segment_entry_count for vhost '/' with 0 queues to '2048' +14:57:21.471 rabbitmq> 2024-09-13 14:57:21.471370+00:00 [info] <0.630.0> Starting message stores for vhost '/' +14:57:21.472 rabbitmq> 2024-09-13 14:57:21.471668+00:00 [info] <0.639.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index +14:57:21.476 rabbitmq> 2024-09-13 14:57:21.475790+00:00 [info] <0.630.0> Started message store of type transient for vhost '/' +14:57:21.476 rabbitmq> 2024-09-13 14:57:21.476001+00:00 [info] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index +14:57:21.478 rabbitmq> 2024-09-13 14:57:21.477814+00:00 [warning] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch +14:57:21.479 rabbitmq> 2024-09-13 14:57:21.478799+00:00 [info] <0.630.0> Started message store of type persistent for vhost '/' +14:57:21.479 rabbitmq> 2024-09-13 14:57:21.478959+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_classic_queue took 24ms +14:57:21.479 rabbitmq> 2024-09-13 14:57:21.479002+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_quorum_queue took 0ms +14:57:21.479 rabbitmq> 2024-09-13 14:57:21.479051+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_stream_queue took 0ms +14:57:21.488 rabbitmq> 2024-09-13 14:57:21.487862+00:00 [info] <0.254.0> Created user 'guest' +14:57:21.495 rabbitmq> 2024-09-13 14:57:21.495336+00:00 [info] <0.254.0> Successfully set user tags for user 'guest' to [administrator] +14:57:21.502 rabbitmq> 2024-09-13 14:57:21.502090+00:00 [info] <0.254.0> Successfully set permissions for user 'guest' in virtual host '/' to '.*', '.*', '.*' +14:57:21.502 rabbitmq> 2024-09-13 14:57:21.502165+00:00 [info] <0.254.0> Running boot step rabbit_observer_cli defined by app rabbit +14:57:21.502 rabbitmq> 2024-09-13 14:57:21.502288+00:00 [info] <0.254.0> Running boot step rabbit_looking_glass defined by app rabbit +14:57:21.503 rabbitmq> 2024-09-13 14:57:21.502318+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics_gc defined by app rabbit +14:57:21.503 rabbitmq> 2024-09-13 14:57:21.502551+00:00 [info] <0.254.0> Running boot step background_gc defined by app rabbit +14:57:21.503 rabbitmq> 2024-09-13 14:57:21.502706+00:00 [info] <0.254.0> Running boot step routing_ready defined by app rabbit +14:57:21.504 rabbitmq> 2024-09-13 14:57:21.502733+00:00 [info] <0.254.0> Running boot step pre_flight defined by app rabbit +14:57:21.504 rabbitmq> 2024-09-13 14:57:21.502766+00:00 [info] <0.254.0> Running boot step notify_cluster defined by app rabbit +14:57:21.504 rabbitmq> 2024-09-13 14:57:21.502825+00:00 [info] <0.254.0> Running boot step networking defined by app rabbit +14:57:21.504 rabbitmq> 2024-09-13 14:57:21.502930+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue_periodic_membership_reconciliation defined by app rabbit +14:57:21.504 rabbitmq> 2024-09-13 14:57:21.503768+00:00 [info] <0.254.0> Running boot step definition_import_worker_pool defined by app rabbit +14:57:21.504 rabbitmq> 2024-09-13 14:57:21.504050+00:00 [info] <0.315.0> Starting worker pool 'definition_import_pool' with 4 processes in it +14:57:21.504 rabbitmq> 2024-09-13 14:57:21.504436+00:00 [info] <0.254.0> Running boot step cluster_name defined by app rabbit +14:57:21.508 rabbitmq> 2024-09-13 14:57:21.504571+00:00 [info] <0.254.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-9unL4wEQuGZc6VsVKLKV3w' +14:57:21.511 rabbitmq> 2024-09-13 14:57:21.511491+00:00 [info] <0.254.0> Running boot step virtual_host_reconciliation defined by app rabbit +14:57:21.511 rabbitmq> 2024-09-13 14:57:21.511762+00:00 [info] <0.254.0> Running boot step direct_client defined by app rabbit +14:57:21.512 rabbitmq> 2024-09-13 14:57:21.511852+00:00 [info] <0.254.0> Running boot step rabbit_federation_exchange defined by app rabbitmq_federation +14:57:21.512 rabbitmq> 2024-09-13 14:57:21.511965+00:00 [info] <0.254.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management +14:57:21.512 rabbitmq> 2024-09-13 14:57:21.512052+00:00 [info] <0.680.0> Resetting node maintenance status +14:57:21.699 rabbitmq> 2024-09-13 14:57:21.698944+00:00 [warning] <0.709.0> Deprecated features: `management_metrics_collection`: Feature `management_metrics_collection` is deprecated. +14:57:21.699 rabbitmq> 2024-09-13 14:57:21.698944+00:00 [warning] <0.709.0> By default, this feature can still be used for now. +14:57:21.699 rabbitmq> 2024-09-13 14:57:21.698944+00:00 [warning] <0.709.0> Its use will not be permitted by default in a future minor RabbitMQ version and the feature will be removed from a future major RabbitMQ version; actual versions to be determined. +14:57:21.699 rabbitmq> 2024-09-13 14:57:21.698944+00:00 [warning] <0.709.0> To continue using this feature when it is not permitted by default, set the following parameter in your configuration: +14:57:21.699 rabbitmq> 2024-09-13 14:57:21.698944+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = true" +14:57:21.699 rabbitmq> 2024-09-13 14:57:21.698944+00:00 [warning] <0.709.0> To test RabbitMQ as if the feature was removed, set this in your configuration: +14:57:21.699 rabbitmq> 2024-09-13 14:57:21.698944+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = false" +14:57:25.551 rabbitmq> 2024-09-13 14:57:25.551485+00:00 [info] <0.746.0> Management plugin: HTTP (non-TLS) listener started on port 15672 +14:57:25.552 rabbitmq> 2024-09-13 14:57:25.551670+00:00 [info] <0.776.0> Statistics database started. +14:57:25.552 rabbitmq> 2024-09-13 14:57:25.551753+00:00 [info] <0.775.0> Starting worker pool 'management_worker_pool' with 3 processes in it +14:57:25.561 rabbitmq> 2024-09-13 14:57:25.560909+00:00 [info] <0.794.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692 +14:57:25.561 rabbitmq> 2024-09-13 14:57:25.561095+00:00 [info] <0.680.0> Ready to start client connection listeners +14:57:25.563 rabbitmq> 2024-09-13 14:57:25.563355+00:00 [info] <0.838.0> started TCP listener on [::]:5672 +14:57:25.697 rabbitmq> completed with 5 plugins. +14:57:25.698 rabbitmq> 2024-09-13 14:57:25.697632+00:00 [info] <0.680.0> Server startup complete; 5 plugins started. +[INFO] DOCKER> Pattern 'Server startup complete' matched for container b99d74a1c69c +14:57:25.698 rabbitmq> 2024-09-13 14:57:25.697632+00:00 [info] <0.680.0> * rabbitmq_prometheus +14:57:25.698 rabbitmq> 2024-09-13 14:57:25.697632+00:00 [info] <0.680.0> * rabbitmq_federation +14:57:25.698 rabbitmq> 2024-09-13 14:57:25.697632+00:00 [info] <0.680.0> * rabbitmq_management +14:57:25.698 rabbitmq> 2024-09-13 14:57:25.697632+00:00 [info] <0.680.0> * rabbitmq_management_agent +14:57:25.698 rabbitmq> 2024-09-13 14:57:25.697632+00:00 [info] <0.680.0> * rabbitmq_web_dispatch +14:57:25.738 rabbitmq> 2024-09-13 14:57:25.737676+00:00 [info] <0.9.0> Time to start RabbitMQ: 10046 ms +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waited on url http://localhost:15672 and on log out 'Server startup complete' 10575 ms +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Start container cb1fe3043c48 +14:57:27.607 sqs> +14:57:27.607 sqs> LocalStack version: 3.7.3.dev19 +14:57:27.607 sqs> LocalStack build date: 2024-09-13 +14:57:27.607 sqs> LocalStack build git hash: cb81582d8 +14:57:27.607 sqs> +14:57:28.134 sqs> Ready. +[INFO] DOCKER> Pattern 'Ready.' matched for container cb1fe3043c48 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Waited on log out 'Ready.' 2011 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container 575e9e9b1ebf +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Start container 86d4c7ac6a01 +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. +14:57:29.633 worker-languagedetection> [2024-09-13 14:57:29.632Z #007.??? INFO - - ] startup.sh: Running startup scripts... +14:57:29.637 worker-languagedetection> [2024-09-13 14:57:29.636Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +14:57:29.649 worker-languagedetection> [2024-09-13 14:57:29.646Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +14:57:29.654 worker-languagedetection> [2024-09-13 14:57:29.652Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +14:57:29.664 worker-languagedetection> [2024-09-13 14:57:29.662Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +14:57:29.666 worker-languagedetection> [2024-09-13 14:57:29.665Z #007.??? INFO - - ] startup.sh: Startup scripts completed +14:57:29.669 worker-languagedetection> [2024-09-13 14:57:29.668Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +14:57:30.031 worker-languagedetection> 14:57:29,833 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +14:57:30.031 worker-languagedetection> 14:57:29,835 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +14:57:30.031 worker-languagedetection> 14:57:29,835 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +14:57:30.031 worker-languagedetection> 14:57:29,836 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +14:57:30.031 worker-languagedetection> 14:57:29,843 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +14:57:30.031 worker-languagedetection> 14:57:29,843 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +14:57:30.031 worker-languagedetection> 14:57:29,852 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 7 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +14:57:30.031 worker-languagedetection> 14:57:29,852 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +14:57:30.031 worker-languagedetection> 14:57:29,853 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +14:57:30.031 worker-languagedetection> 14:57:29,853 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +14:57:30.031 worker-languagedetection> 14:57:29,857 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +14:57:30.031 worker-languagedetection> 14:57:29,862 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +14:57:30.031 worker-languagedetection> 14:57:29,907 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +14:57:30.031 worker-languagedetection> 14:57:29,907 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +14:57:30.031 worker-languagedetection> 14:57:29,907 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +14:57:30.031 worker-languagedetection> 14:57:29,960 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +14:57:30.031 worker-languagedetection> 14:57:29,960 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +14:57:30.031 worker-languagedetection> 14:57:29,960 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +14:57:30.031 worker-languagedetection> 14:57:29,964 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +14:57:30.031 worker-languagedetection> 14:57:29,965 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +14:57:30.031 worker-languagedetection> 14:57:29,976 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +14:57:30.031 worker-languagedetection> 14:57:29,981 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +14:57:30.031 worker-languagedetection> 14:57:30,014 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +14:57:30.031 worker-languagedetection> 14:57:30,018 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +14:57:30.031 worker-languagedetection> 14:57:30,018 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +14:57:30.031 worker-languagedetection> 14:57:30,019 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +14:57:30.031 worker-languagedetection> 14:57:30,019 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +14:57:30.031 worker-languagedetection> 14:57:30,020 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +14:57:30.031 worker-languagedetection> 14:57:30,020 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +14:57:30.031 worker-languagedetection> 14:57:30,020 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +14:57:30.031 worker-languagedetection> 14:57:30,020 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 167 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY +14:57:30.031 worker-languagedetection> +14:57:30.268 worker-languagedetection> [2024-09-13 14:57:30.247Z #092.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +14:57:31.004 worker-languagedetection> [2024-09-13 14:57:31.003Z #092.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +14:57:31.006 worker-languagedetection> [2024-09-13 14:57:31.005Z #092.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +14:57:31.007 worker-languagedetection> [2024-09-13 14:57:31.006Z #092.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +14:57:31.021 worker-languagedetection> [2024-09-13 14:57:31.021Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +14:57:31.024 worker-languagedetection> [2024-09-13 14:57:31.024Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +14:57:31.025 worker-languagedetection> [2024-09-13 14:57:31.025Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +14:57:31.027 worker-languagedetection> [2024-09-13 14:57:31.027Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +14:57:31.036 worker-languagedetection> [2024-09-13 14:57:31.035Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +14:57:31.038 worker-languagedetection> [2024-09-13 14:57:31.038Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +14:57:31.039 worker-languagedetection> [2024-09-13 14:57:31.039Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +14:57:31.088 worker-languagedetection> [2024-09-13 14:57:31.088Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider +14:57:31.131 worker-languagedetection> [2024-09-13 14:57:31.127Z #092.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} +14:57:31.243 worker-languagedetection> [2024-09-13 14:57:31.243Z #092.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +14:57:31.243 worker-languagedetection> [2024-09-13 14:57:31.243Z #092.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +14:57:31.246 worker-languagedetection> [2024-09-13 14:57:31.245Z #092.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS +14:57:31.258 worker-languagedetection> [2024-09-13 14:57:31.257Z #092.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. +14:57:31.290 worker-languagedetection> [2024-09-13 14:57:31.289Z #092.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE +14:57:31.293 worker-languagedetection> [2024-09-13 14:57:31.292Z #092.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY +14:57:31.293 worker-languagedetection> [2024-09-13 14:57:31.293Z #092.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY +14:57:31.294 worker-languagedetection> [2024-09-13 14:57:31.294Z #092.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY +14:57:31.295 worker-languagedetection> [2024-09-13 14:57:31.295Z #092.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE +14:57:31.301 worker-languagedetection> [2024-09-13 14:57:31.301Z #092.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY +14:57:31.302 worker-languagedetection> [2024-09-13 14:57:31.302Z #092.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE +14:57:31.305 worker-languagedetection> +14:57:31.637 worker-languagedetection> [2024-09-13 14:57:31.636Z #092.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} +14:57:31.639 worker-languagedetection> [2024-09-13 14:57:31.638Z #092.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@2d5a1588{/,null,AVAILABLE} +14:57:31.642 worker-languagedetection> [2024-09-13 14:57:31.642Z #092.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} +14:57:31.643 worker-languagedetection> [2024-09-13 14:57:31.642Z #092.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@1c61eda5{/,null,AVAILABLE} +14:57:31.649 worker-languagedetection> [2024-09-13 14:57:31.649Z #092.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +14:57:31.652 worker-languagedetection> [2024-09-13 14:57:31.652Z #092.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +14:57:31.655 worker-languagedetection> [2024-09-13 14:57:31.655Z #092.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@517a2b0{STARTING}[11.0.23,sto=30000] @1981ms +14:57:31.733 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:31 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 13 +14:57:32.233 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:32 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:57:32.737 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:32 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:33.246 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:33 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:33.754 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:33 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:34.267 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:34 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:57:34.776 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:34 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:57:35.286 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:35.801 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:57:36.305 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:36.809 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:37.314 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:57:37.818 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:38.325 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:38.831 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:39.339 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:39.852 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:57:40.360 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:40.869 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:41.374 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:41.886 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:57:42.405 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 +14:57:42.905 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:43.415 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:43.923 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:57:44.429 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:44.938 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:57:45.443 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +14:57:45.957 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +14:57:46.296 worker-languagedetection> [2024-09-13 14:57:46.296Z #092.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE +14:57:46.464 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:46.969 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +14:57:47.130 worker-languagedetection> [2024-09-13 14:57:47.130Z #092.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY +14:57:47.131 worker-languagedetection> [2024-09-13 14:57:47.130Z #092.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE +14:57:47.131 worker-languagedetection> [2024-09-13 14:57:47.130Z #092.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE +14:57:47.132 worker-languagedetection> [2024-09-13 14:57:47.132Z #092.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY +14:57:47.133 worker-languagedetection> [2024-09-13 14:57:47.133Z #092.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY +14:57:47.133 worker-languagedetection> [2024-09-13 14:57:47.133Z #092.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waited on url http://localhost:8082/health-check?type=READY 17823 ms +14:57:47.474 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +[INFO] +[INFO] --- failsafe:3.1.2:integration-test (sqs-implementation-testing) @ worker-languagedetection-container --- +[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider +[INFO] +[INFO] ------------------------------------------------------- +[INFO] T E S T S +[INFO] ------------------------------------------------------- +[INFO] Running com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT +15:57:48,142 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +15:57:48,147 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - No custom configurators were discovered as a service. +15:57:48,147 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +15:57:48,150 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +15:57:48,156 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +15:57:48,158 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +15:57:48,167 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 9 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +15:57:48,167 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +15:57:48,169 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +15:57:48,170 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +15:57:48,174 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] +15:57:48,188 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@b2c9a9c - URL [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +15:57:48,273 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +15:57:48,273 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +15:57:48,273 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +15:57:48,383 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +15:57:48,383 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +15:57:48,383 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +15:57:48,397 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +15:57:48,397 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +15:57:48,413 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +15:57:48,415 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +15:57:48,533 |-INFO in ch.qos.logback.classic.pattern.DateConverter@fa4c865 - Setting zoneId to "UTC" +15:57:48,537 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +15:57:48,537 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +15:57:48,537 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +15:57:48,539 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +15:57:48,539 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +15:57:48,539 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@3bd82cf5 - End of configuration. +15:57:48,540 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@544fa968 - Registering current configuration as safe fallback point +15:57:48,540 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 371 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_field_multi_lang_en_fr_ger.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_multi_datasource.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_single_datasource.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_invalid.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple_multi.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_english.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_french.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_german.yaml.testcase + +=============== Starting test Item single_lang_french.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_french.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_french.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_french.yaml +Description: null +Associated tickets: null +Comments: single_lang_french.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 1 +Number of successful test cases (all test instances passes): 1 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid_combined.yaml +================================================================================ +14:57:59.688 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:57:59 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 2 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 2 +Number of successful test cases (all test instances passes): 2 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 3 +Number of successful test cases (all test instances passes): 3 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_simple_multi.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_simple_multi.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODE_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_FR_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_GER_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_simple_multi.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_simple_multi.yaml +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 4 +Number of successful test cases (all test instances passes): 4 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown_split.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 5 +Number of successful test cases (all test instances passes): 5 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_combined.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 6 +Number of successful test cases (all test instances passes): 6 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 7 +Number of successful test cases (all test instances passes): 7 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid_split.yaml +================================================================================ +14:58:29.738 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:58:29 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 8 +Number of successful test cases (all test instances passes): 8 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item single_lang_english.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_english.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_english.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_english.yaml +Description: null +Associated tickets: null +Comments: single_lang_english.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 9 +Number of successful test cases (all test instances passes): 9 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_lang_single_datasource.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_lang_single_datasource.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_lang_single_datasource.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_lang_single_datasource.yaml +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 10 +Number of successful test cases (all test instances passes): 10 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_field_multi_lang_en_fr_ger.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_field_multi_lang_en_fr_ger.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODE_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_FR_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_GER_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_field_multi_lang_en_fr_ger.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 11 +Number of successful test cases (all test instances passes): 11 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang_combined.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 12 +Number of successful test cases (all test instances passes): 12 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 13 +Number of successful test cases (all test instances passes): 13 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang_split.yaml +================================================================================ +14:58:59.779 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:58:59 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 14 +Number of successful test cases (all test instances passes): 14 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== +14:59:02.451 worker-languagedetection> [2024-09-13 14:59:02.450Z #092.054 ERROR - - ] c.h.c.w.l.LanguageDetectionWorker: Failed to read result format specified. + +=============== Starting test Item resultFormat_invalid.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_invalid.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_invalid.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_invalid.yaml +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 15 +Number of successful test cases (all test instances passes): 15 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown_combined.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 16 +Number of successful test cases (all test instances passes): 16 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_simple.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_simple.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_simple.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_simple.yaml +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 17 +Number of successful test cases (all test instances passes): 17 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_lang_multi_datasource.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_lang_multi_datasource.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_lang_multi_datasource.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 18 +Number of successful test cases (all test instances passes): 18 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_split.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_multi_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 19 +Number of successful test cases (all test instances passes): 19 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item single_lang_german.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_german.yaml +================================================================================ +14:59:29.825 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:59:29 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_multi_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_german.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_german.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_german.yaml +Description: null +Associated tickets: null +Comments: single_lang_german.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_german.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_german.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 20 +Number of successful test cases (all test instances passes): 20 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_multi_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_german.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS +Item with id single_lang_german.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_german.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_german.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 21 +Number of successful test cases (all test instances passes): 21 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== +[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 109.8 s -- in com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT +[INFO] +[INFO] Results: +[INFO] +[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0 +[INFO] +[INFO] +[INFO] --- failsafe:3.1.2:integration-test (rabbit-implementation-testing) @ worker-languagedetection-container --- +[INFO] Tests are skipped. +[INFO] +[INFO] --- docker:0.43.4:stop (stop) @ worker-languagedetection-container --- +14:59:38.431 worker-languagedetection> [2024-09-13 14:59:38.430Z #092.033 INFO - - ] o.eclipse.jetty.server.Server: Stopped Server@517a2b0{STOPPING}[11.0.23,sto=30000] +14:59:38.431 worker-languagedetection> [2024-09-13 14:59:38.431Z #092.033 INFO - - ] o.eclipse.jetty.server.Server: Shutdown Server@517a2b0{STOPPING}[11.0.23,sto=30000] +14:59:38.434 worker-languagedetection> [2024-09-13 14:59:38.434Z #092.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +14:59:38.436 worker-languagedetection> [2024-09-13 14:59:38.436Z #092.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +14:59:38.437 worker-languagedetection> [2024-09-13 14:59:38.437Z #092.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@1c61eda5{/,null,STOPPED} +14:59:38.444 worker-languagedetection> [2024-09-13 14:59:38.443Z #092.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@2d5a1588{/,null,STOPPED} +14:59:38.446 worker-languagedetection> [2024-09-13 14:59:38.446Z #092.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stop requested, allowing in-progress tasks to complete. +14:59:38.446 worker-languagedetection> [2024-09-13 14:59:38.446Z #092.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stopped. +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Stop and removed container 86d4c7ac6a01 after 0 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container 575e9e9b1ebf after 0 ms +14:59:39.952 sqs> Localstack runtime received signal 15 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Stop and removed container cb1fe3043c48 after 0 ms +14:59:45.985 rabbitmq> 2024-09-13 14:59:45.984947+00:00 [notice] <0.64.0> SIGTERM received - shutting down +14:59:45.985 rabbitmq> 2024-09-13 14:59:45.984947+00:00 [notice] <0.64.0> +14:59:45.987 rabbitmq> 2024-09-13 14:59:45.986524+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_prometheus_tls +14:59:45.991 rabbitmq> 2024-09-13 14:59:45.990603+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_management_tls +14:59:45.998 rabbitmq> 2024-09-13 14:59:45.997829+00:00 [info] <0.838.0> stopped TCP listener on [::]:5672 +14:59:45.998 rabbitmq> 2024-09-13 14:59:45.998540+00:00 [info] <0.630.0> Virtual host '/' is stopping +14:59:45.999 rabbitmq> 2024-09-13 14:59:45.998630+00:00 [info] <0.872.0> Closing all connections in vhost '/' on node 'rabbit@b99d74a1c69c' because the vhost is stopping +14:59:45.999 rabbitmq> 2024-09-13 14:59:45.998773+00:00 [info] <0.643.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' +14:59:46.009 rabbitmq> 2024-09-13 14:59:46.009380+00:00 [info] <0.643.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' is stopped +14:59:46.009 rabbitmq> 2024-09-13 14:59:46.009564+00:00 [info] <0.639.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' +14:59:46.020 rabbitmq> 2024-09-13 14:59:46.020501+00:00 [info] <0.639.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' is stopped +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Stop and removed container b99d74a1c69c after 0 ms +14:59:48.296 webdav> Caught SIGTERM signal! +14:59:48.296 webdav> ++ _term +14:59:48.296 webdav> ++ echo 'Caught SIGTERM signal!' +14:59:48.296 webdav> ++ kill -TERM '' +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container e2f8be125ba7 after 0 ms +[INFO] +[INFO] --- license:4.3:check (check-license-headers) @ worker-languagedetection-container --- +[INFO] Checking licenses... +[INFO] +[INFO] --- dependency:3.6.0:analyze-only (check-dependencies) @ worker-languagedetection-container --- +[INFO] Skipping pom project +[INFO] +[INFO] --- duplicate-finder:2.0.1:check (deepcheck-dependencies) @ worker-languagedetection-container --- +[INFO] Ignoring POM project! +[INFO] +[INFO] --- failsafe:3.1.2:verify (sqs-implementation-testing) @ worker-languagedetection-container --- +[INFO] +[INFO] --- failsafe:3.1.2:verify (rabbit-implementation-testing) @ worker-languagedetection-container --- +[INFO] Tests are skipped. +[INFO] +[INFO] --- install:3.1.1:install (default-install) @ worker-languagedetection-container --- +[INFO] Skipping artifact installation +[INFO] +[INFO] --- docker-versions:1.0.0-29:depopulate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 04:08 min +[INFO] Finished at: 2024-09-13T15:59:50+01:00 +[INFO] ------------------------------------------------------------------------ +[INFO] Scanning for projects... +[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] +[INFO] Inspecting build with total of 1 modules... +[INFO] Installing Nexus Staging features: +[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin +[INFO] +[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- +[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT +[INFO] from pom.xml +[INFO] --------------------------------[ pom ]--------------------------------- +[INFO] +[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest] +[INFO] +[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- +[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target +[INFO] +[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- +[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed +[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed +[INFO] +[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- +[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true +[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container +[INFO] Git info extracted in 253ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' +[INFO] +[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- +[INFO] Using plugin classloader, includes GMavenPlus and project classpath. +[INFO] Using Groovy 3.0.19 to perform execute. +[INFO] +[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- +[INFO] Updating license headers... +[INFO] +[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- +[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar +[INFO] +[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- +[INFO] Copying 2 resources from src/main/config to target/config-files +[INFO] +[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- +[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox +[INFO] DOCKER> +[INFO] DOCKER> ---> 6fd955f66c23 +[INFO] DOCKER> Step 2/4 : COPY maven /config/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 8be7948e3c01 +[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> ef52e370b90f +[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 1f97ff59e5f4 +[INFO] DOCKER> Successfully built 1f97ff59e5f4 +[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:1f97f +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar +[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Created docker-build.tar in 1 minute and 13 seconds +[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 +[INFO] DOCKER> +[INFO] DOCKER> ---> 0f51baaf46f5 +[INFO] DOCKER> Step 2/4 : COPY maven /maven/ +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 91e7f56ef8cf +[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 002fc83963fa +[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] +[INFO] DOCKER> +[INFO] DOCKER> ---> Using cache +[INFO] DOCKER> ---> 2adee4e4f048 +[INFO] DOCKER> Successfully built 2adee4e4f048 +[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Built image sha256:2adee +[INFO] +[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- +[INFO] Changes detected - recompiling the module! :source +[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes +[INFO] +[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- +[INFO] +[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- +[INFO] Not executing Javadoc as the project is not a Java classpath-capable package +[INFO] +[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container 9d60a115a88a +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. +15:03:19.261 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf +15:03:19.262 webdav> + getent passwd 33 +15:03:19.263 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin +15:03:19.263 webdav> + useradd -r webdav -u 33 -g 33 +15:03:19.312 webdav> useradd: UID 33 is not unique +15:03:19.314 webdav> + mkdir -p /srv/common/webdav +15:03:19.314 webdav> + chown 33 /srv/common/webdav +15:03:19.314 webdav> + trap _term SIGTERM +15:03:19.315 webdav> + pid=12 +15:03:19.315 webdav> + wait 12 +15:03:19.315 webdav> + /usr/sbin/apache2 -D FOREGROUND +15:03:19.325 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +15:03:19.329 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +15:03:19.330 webdav> [Fri Sep 13 15:03:19.330702 2024] [mpm_event:notice] [pid 12:tid 139663843268480] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations +15:03:19.331 webdav> [Fri Sep 13 15:03:19.331192 2024] [core:notice] [pid 12:tid 139663843268480] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' +15:03:19.426 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:15:03:19 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" +[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 128 ms +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Start container 5be5395a1c9d +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waiting on url http://localhost:15672 with method HEAD for status 200..399. +15:03:23.871 rabbitmq> 2024-09-13 15:03:23.861188+00:00 [notice] <0.44.0> Application syslog exited with reason: stopped +15:03:23.871 rabbitmq> 2024-09-13 15:03:23.870915+00:00 [notice] <0.254.0> Logging: switching to configured handler(s); following messages may not be visible in this log output +15:03:23.872 rabbitmq> 2024-09-13 15:03:23.871580+00:00 [notice] <0.254.0> Logging: configured log handlers are now ACTIVE +15:03:23.885 rabbitmq> 2024-09-13 15:03:23.884479+00:00 [info] <0.254.0> ra: starting system quorum_queues +15:03:23.885 rabbitmq> 2024-09-13 15:03:23.884597+00:00 [info] <0.254.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/quorum/rabbit@5be5395a1c9d +15:03:23.977 rabbitmq> 2024-09-13 15:03:23.977248+00:00 [info] <0.268.0> ra system 'quorum_queues' running pre init for 0 registered servers +15:03:23.992 rabbitmq> 2024-09-13 15:03:23.992631+00:00 [info] <0.269.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered +15:03:24.016 rabbitmq> 2024-09-13 15:03:24.015610+00:00 [notice] <0.274.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables +15:03:24.046 rabbitmq> 2024-09-13 15:03:24.046460+00:00 [info] <0.254.0> ra: starting system coordination +15:03:24.046 rabbitmq> 2024-09-13 15:03:24.046538+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/coordination/rabbit@5be5395a1c9d +15:03:24.049 rabbitmq> 2024-09-13 15:03:24.049537+00:00 [info] <0.282.0> ra system 'coordination' running pre init for 0 registered servers +15:03:24.051 rabbitmq> 2024-09-13 15:03:24.050880+00:00 [info] <0.283.0> ra: meta data store initialised for system coordination. 0 record(s) recovered +15:03:24.051 rabbitmq> 2024-09-13 15:03:24.051132+00:00 [notice] <0.288.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables +15:03:24.063 rabbitmq> 2024-09-13 15:03:24.062637+00:00 [info] <0.254.0> ra: starting system coordination +15:03:24.063 rabbitmq> 2024-09-13 15:03:24.062708+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/coordination/rabbit@5be5395a1c9d +15:03:24.203 rabbitmq> 2024-09-13 15:03:24.202966+00:00 [info] <0.254.0> Waiting for Khepri leader for 30000 ms, 9 retries left +15:03:24.225 rabbitmq> 2024-09-13 15:03:24.224806+00:00 [notice] <0.292.0> RabbitMQ metadata store: candidate -> leader in term: 1 machine version: 1 +15:03:24.233 rabbitmq> 2024-09-13 15:03:24.232934+00:00 [info] <0.254.0> Khepri leader elected +15:03:24.233 rabbitmq> 2024-09-13 15:03:24.232992+00:00 [info] <0.254.0> Waiting for Khepri projections for 30000 ms, 9 retries left +15:03:24.660 rabbitmq> 2024-09-13 15:03:24.660466+00:00 [info] <0.254.0> +15:03:24.660 rabbitmq> 2024-09-13 15:03:24.660466+00:00 [info] <0.254.0> Starting RabbitMQ 3.13.7 on Erlang 26.2.5.3 [jit] +15:03:24.660 rabbitmq> 2024-09-13 15:03:24.660466+00:00 [info] <0.254.0> Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries +15:03:24.660 rabbitmq> 2024-09-13 15:03:24.660466+00:00 [info] <0.254.0> Licensed under the MPL 2.0. Website: https://rabbitmq.com +15:03:24.662 rabbitmq> +15:03:24.662 rabbitmq> ## ## RabbitMQ 3.13.7 +15:03:24.662 rabbitmq> ## ## +15:03:24.662 rabbitmq> ########## Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries +15:03:24.662 rabbitmq> ###### ## +15:03:24.662 rabbitmq> ########## Licensed under the MPL 2.0. Website: https://rabbitmq.com +15:03:24.662 rabbitmq> +15:03:24.662 rabbitmq> Erlang: 26.2.5.3 [jit] +15:03:24.662 rabbitmq> TLS Library: OpenSSL - OpenSSL 3.1.7 3 Sep 2024 +15:03:24.662 rabbitmq> Release series support status: see https://www.rabbitmq.com/release-information +15:03:24.662 rabbitmq> +15:03:24.662 rabbitmq> Doc guides: https://www.rabbitmq.com/docs +15:03:24.662 rabbitmq> Support: https://www.rabbitmq.com/docs/contact +15:03:24.662 rabbitmq> Tutorials: https://www.rabbitmq.com/tutorials +15:03:24.662 rabbitmq> Monitoring: https://www.rabbitmq.com/docs/monitoring +15:03:24.662 rabbitmq> Upgrading: https://www.rabbitmq.com/docs/upgrade +15:03:24.662 rabbitmq> +15:03:24.662 rabbitmq> Logs: +15:03:24.662 rabbitmq> +15:03:24.662 rabbitmq> Config file(s): /etc/rabbitmq/conf.d/10-defaults.conf +15:03:24.662 rabbitmq> +15:03:24.665 rabbitmq> Starting broker...2024-09-13 15:03:24.663257+00:00 [info] <0.254.0> +15:03:24.665 rabbitmq> 2024-09-13 15:03:24.663257+00:00 [info] <0.254.0> node : rabbit@5be5395a1c9d +15:03:24.665 rabbitmq> 2024-09-13 15:03:24.663257+00:00 [info] <0.254.0> home dir : /var/lib/rabbitmq +15:03:24.665 rabbitmq> 2024-09-13 15:03:24.663257+00:00 [info] <0.254.0> config file(s) : /etc/rabbitmq/conf.d/10-defaults.conf +15:03:24.665 rabbitmq> 2024-09-13 15:03:24.663257+00:00 [info] <0.254.0> cookie hash : G3wnbms0cUY3zTx18aI//Q== +15:03:24.665 rabbitmq> 2024-09-13 15:03:24.663257+00:00 [info] <0.254.0> log(s) : +15:03:24.665 rabbitmq> 2024-09-13 15:03:24.663257+00:00 [info] <0.254.0> data dir : /var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d +15:03:25.016 rabbitmq> 2024-09-13 15:03:25.015840+00:00 [info] <0.254.0> Running boot step pre_boot defined by app rabbit +15:03:25.016 rabbitmq> 2024-09-13 15:03:25.015909+00:00 [info] <0.254.0> Running boot step rabbit_global_counters defined by app rabbit +15:03:25.017 rabbitmq> 2024-09-13 15:03:25.016433+00:00 [info] <0.254.0> Running boot step rabbit_osiris_metrics defined by app rabbit +15:03:25.017 rabbitmq> 2024-09-13 15:03:25.016546+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics defined by app rabbit +15:03:25.017 rabbitmq> 2024-09-13 15:03:25.016970+00:00 [info] <0.254.0> Running boot step rabbit_alarm defined by app rabbit +15:03:25.029 rabbitmq> 2024-09-13 15:03:25.029187+00:00 [info] <0.329.0> Memory high watermark set to 6399 MiB (6710412902 bytes) of 15998 MiB (16776032256 bytes) total +15:03:25.032 rabbitmq> 2024-09-13 15:03:25.032404+00:00 [info] <0.331.0> Enabling free disk space monitoring (disk free space: 969862926336, total memory: 16776032256) +15:03:25.032 rabbitmq> 2024-09-13 15:03:25.032461+00:00 [info] <0.331.0> Disk free limit set to 50MB +15:03:25.034 rabbitmq> 2024-09-13 15:03:25.034463+00:00 [info] <0.254.0> Running boot step code_server_cache defined by app rabbit +15:03:25.034 rabbitmq> 2024-09-13 15:03:25.034553+00:00 [info] <0.254.0> Running boot step file_handle_cache defined by app rabbit +15:03:25.042 rabbitmq> 2024-09-13 15:03:25.042595+00:00 [info] <0.334.0> Limiting to approx 1048479 file handles (943629 sockets) +15:03:25.043 rabbitmq> 2024-09-13 15:03:25.042820+00:00 [info] <0.335.0> FHC read buffering: OFF +15:03:25.043 rabbitmq> 2024-09-13 15:03:25.042861+00:00 [info] <0.335.0> FHC write buffering: ON +15:03:25.044 rabbitmq> 2024-09-13 15:03:25.043310+00:00 [info] <0.254.0> Running boot step worker_pool defined by app rabbit +15:03:25.044 rabbitmq> 2024-09-13 15:03:25.043445+00:00 [info] <0.315.0> Will use 4 processes for default worker pool +15:03:25.044 rabbitmq> 2024-09-13 15:03:25.043486+00:00 [info] <0.315.0> Starting worker pool 'worker_pool' with 4 processes in it +15:03:25.044 rabbitmq> 2024-09-13 15:03:25.043745+00:00 [info] <0.254.0> Running boot step database defined by app rabbit +15:03:25.044 rabbitmq> 2024-09-13 15:03:25.044080+00:00 [info] <0.254.0> Peer discovery: configured backend: rabbit_peer_discovery_classic_config +15:03:25.046 rabbitmq> 2024-09-13 15:03:25.045800+00:00 [notice] <0.316.0> Feature flags: attempt to enable `detailed_queues_endpoint`... +15:03:25.116 rabbitmq> 2024-09-13 15:03:25.116079+00:00 [notice] <0.316.0> Feature flags: `detailed_queues_endpoint` enabled +15:03:25.116 rabbitmq> 2024-09-13 15:03:25.116219+00:00 [notice] <0.316.0> Feature flags: attempt to enable `quorum_queue_non_voters`... +15:03:25.193 rabbitmq> 2024-09-13 15:03:25.193041+00:00 [notice] <0.316.0> Feature flags: `quorum_queue_non_voters` enabled +15:03:25.193 rabbitmq> 2024-09-13 15:03:25.193237+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_update_config_command`... +15:03:25.273 rabbitmq> 2024-09-13 15:03:25.273297+00:00 [notice] <0.316.0> Feature flags: `stream_update_config_command` enabled +15:03:25.273 rabbitmq> 2024-09-13 15:03:25.273479+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_filtering`... +15:03:25.355 rabbitmq> 2024-09-13 15:03:25.354594+00:00 [notice] <0.316.0> Feature flags: `stream_filtering` enabled +15:03:25.357 rabbitmq> 2024-09-13 15:03:25.354836+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_sac_coordinator_unblock_group`... +15:03:25.439 rabbitmq> 2024-09-13 15:03:25.439308+00:00 [notice] <0.316.0> Feature flags: `stream_sac_coordinator_unblock_group` enabled +15:03:25.439 rabbitmq> 2024-09-13 15:03:25.439483+00:00 [notice] <0.316.0> Feature flags: attempt to enable `restart_streams`... +15:03:25.522 rabbitmq> 2024-09-13 15:03:25.522492+00:00 [notice] <0.316.0> Feature flags: `restart_streams` enabled +15:03:25.523 rabbitmq> 2024-09-13 15:03:25.522921+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers`... +15:03:25.601 rabbitmq> 2024-09-13 15:03:25.601284+00:00 [notice] <0.316.0> Feature flags: `message_containers` enabled +15:03:25.601 rabbitmq> 2024-09-13 15:03:25.601459+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers_deaths_v2`... +15:03:25.676 rabbitmq> 2024-09-13 15:03:25.675974+00:00 [notice] <0.316.0> Feature flags: `message_containers_deaths_v2` enabled +15:03:25.676 rabbitmq> 2024-09-13 15:03:25.676232+00:00 [info] <0.254.0> DB: virgin node -> run peer discovery +15:03:25.676 rabbitmq> 2024-09-13 15:03:25.676293+00:00 [warning] <0.254.0> Classic peer discovery backend: list of nodes does not contain the local node [] +15:03:25.688 rabbitmq> 2024-09-13 15:03:25.687894+00:00 [notice] <0.44.0> Application mnesia exited with reason: stopped +15:03:26.001 rabbitmq> 2024-09-13 15:03:26.000986+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +15:03:26.001 rabbitmq> 2024-09-13 15:03:26.001135+00:00 [info] <0.254.0> Successfully synced tables from a peer +15:03:26.001 rabbitmq> 2024-09-13 15:03:26.001238+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +15:03:26.002 rabbitmq> 2024-09-13 15:03:26.001503+00:00 [info] <0.254.0> Successfully synced tables from a peer +15:03:26.025 rabbitmq> 2024-09-13 15:03:26.024781+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025020+00:00 [info] <0.254.0> Successfully synced tables from a peer +15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025152+00:00 [info] <0.254.0> Running boot step tracking_metadata_store defined by app rabbit +15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025254+00:00 [info] <0.558.0> Setting up a table for connection tracking on this node: tracked_connection +15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025335+00:00 [info] <0.558.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost +15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025426+00:00 [info] <0.558.0> Setting up a table for per-user connection counting on this node: tracked_connection_per_user +15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025468+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel +15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025541+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel_per_user +15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025607+00:00 [info] <0.254.0> Running boot step networking_metadata_store defined by app rabbit +15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025711+00:00 [info] <0.254.0> Running boot step feature_flags defined by app rabbit +15:03:26.026 rabbitmq> 2024-09-13 15:03:26.025867+00:00 [info] <0.254.0> Running boot step codec_correctness_check defined by app rabbit +15:03:26.026 rabbitmq> 2024-09-13 15:03:26.025936+00:00 [info] <0.254.0> Running boot step external_infrastructure defined by app rabbit +15:03:26.026 rabbitmq> 2024-09-13 15:03:26.026010+00:00 [info] <0.254.0> Running boot step rabbit_event defined by app rabbit +15:03:26.027 rabbitmq> 2024-09-13 15:03:26.026192+00:00 [info] <0.254.0> Running boot step rabbit_registry defined by app rabbit +15:03:26.027 rabbitmq> 2024-09-13 15:03:26.026298+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit +15:03:26.028 rabbitmq> 2024-09-13 15:03:26.026359+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit +15:03:26.028 rabbitmq> 2024-09-13 15:03:26.026409+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit +15:03:26.028 rabbitmq> 2024-09-13 15:03:26.026482+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_direct defined by app rabbit +15:03:26.028 rabbitmq> 2024-09-13 15:03:26.026547+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit +15:03:26.028 rabbitmq> 2024-09-13 15:03:26.026616+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_headers defined by app rabbit +15:03:26.029 rabbitmq> 2024-09-13 15:03:26.026671+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_topic defined by app rabbit +15:03:26.029 rabbitmq> 2024-09-13 15:03:26.026730+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit +15:03:26.029 rabbitmq> 2024-09-13 15:03:26.026788+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit +15:03:26.032 rabbitmq> 2024-09-13 15:03:26.026830+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit +15:03:26.033 rabbitmq> 2024-09-13 15:03:26.026869+00:00 [info] <0.254.0> Running boot step rabbit_priority_queue defined by app rabbit +15:03:26.033 rabbitmq> 2024-09-13 15:03:26.026890+00:00 [info] <0.254.0> Priority queues enabled, real BQ is rabbit_variable_queue +15:03:26.034 rabbitmq> 2024-09-13 15:03:26.026928+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_client_local defined by app rabbit +15:03:26.034 rabbitmq> 2024-09-13 15:03:26.026962+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit +15:03:26.034 rabbitmq> 2024-09-13 15:03:26.026991+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_random defined by app rabbit +15:03:26.035 rabbitmq> 2024-09-13 15:03:26.027050+00:00 [info] <0.254.0> Running boot step kernel_ready defined by app rabbit +15:03:26.035 rabbitmq> 2024-09-13 15:03:26.027073+00:00 [info] <0.254.0> Running boot step rabbit_sysmon_minder defined by app rabbit +15:03:26.035 rabbitmq> 2024-09-13 15:03:26.027154+00:00 [info] <0.254.0> Running boot step rabbit_epmd_monitor defined by app rabbit +15:03:26.035 rabbitmq> 2024-09-13 15:03:26.028364+00:00 [info] <0.566.0> epmd monitor knows us, inter-node communication (distribution) port: 25672 +15:03:26.035 rabbitmq> 2024-09-13 15:03:26.028456+00:00 [info] <0.254.0> Running boot step guid_generator defined by app rabbit +15:03:26.036 rabbitmq> 2024-09-13 15:03:26.036196+00:00 [info] <0.254.0> Running boot step rabbit_node_monitor defined by app rabbit +15:03:26.036 rabbitmq> 2024-09-13 15:03:26.036513+00:00 [info] <0.570.0> Starting rabbit_node_monitor (in ignore mode) +15:03:26.037 rabbitmq> 2024-09-13 15:03:26.036660+00:00 [info] <0.254.0> Running boot step delegate_sup defined by app rabbit +15:03:26.038 rabbitmq> 2024-09-13 15:03:26.038013+00:00 [info] <0.254.0> Running boot step rabbit_memory_monitor defined by app rabbit +15:03:26.038 rabbitmq> 2024-09-13 15:03:26.038193+00:00 [info] <0.254.0> Running boot step rabbit_fifo_dlx_sup defined by app rabbit +15:03:26.038 rabbitmq> 2024-09-13 15:03:26.038265+00:00 [info] <0.254.0> Running boot step core_initialized defined by app rabbit +15:03:26.038 rabbitmq> 2024-09-13 15:03:26.038290+00:00 [info] <0.254.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit +15:03:26.038 rabbitmq> 2024-09-13 15:03:26.038329+00:00 [info] <0.254.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit +15:03:26.038 rabbitmq> 2024-09-13 15:03:26.038358+00:00 [info] <0.254.0> Running boot step rabbit_definitions_hashing defined by app rabbit +15:03:26.039 rabbitmq> 2024-09-13 15:03:26.038398+00:00 [info] <0.254.0> Running boot step rabbit_exchange_parameters defined by app rabbit +15:03:26.075 rabbitmq> 2024-09-13 15:03:26.074659+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit +15:03:26.075 rabbitmq> 2024-09-13 15:03:26.075014+00:00 [info] <0.254.0> Running boot step rabbit_policies defined by app rabbit +15:03:26.075 rabbitmq> 2024-09-13 15:03:26.075713+00:00 [info] <0.254.0> Running boot step rabbit_policy defined by app rabbit +15:03:26.076 rabbitmq> 2024-09-13 15:03:26.075791+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_validator defined by app rabbit +15:03:26.076 rabbitmq> 2024-09-13 15:03:26.076098+00:00 [info] <0.254.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit +15:03:26.076 rabbitmq> 2024-09-13 15:03:26.076172+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue defined by app rabbit +15:03:26.076 rabbitmq> 2024-09-13 15:03:26.076308+00:00 [info] <0.254.0> Running boot step rabbit_stream_coordinator defined by app rabbit +15:03:26.076 rabbitmq> 2024-09-13 15:03:26.076466+00:00 [info] <0.254.0> Running boot step rabbit_vhost_limit defined by app rabbit +15:03:26.077 rabbitmq> 2024-09-13 15:03:26.076517+00:00 [info] <0.254.0> Running boot step rabbit_federation_parameters defined by app rabbitmq_federation +15:03:26.077 rabbitmq> 2024-09-13 15:03:26.076586+00:00 [info] <0.254.0> Running boot step rabbit_federation_supervisor defined by app rabbitmq_federation +15:03:26.086 rabbitmq> 2024-09-13 15:03:26.085906+00:00 [info] <0.254.0> Running boot step rabbit_federation_queue defined by app rabbitmq_federation +15:03:26.086 rabbitmq> 2024-09-13 15:03:26.086041+00:00 [info] <0.254.0> Running boot step rabbit_federation_upstream_exchange defined by app rabbitmq_federation +15:03:26.086 rabbitmq> 2024-09-13 15:03:26.086131+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management +15:03:26.086 rabbitmq> 2024-09-13 15:03:26.086171+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent +15:03:26.087 rabbitmq> 2024-09-13 15:03:26.086197+00:00 [info] <0.254.0> Management plugin: using rates mode 'basic' +15:03:26.087 rabbitmq> 2024-09-13 15:03:26.087094+00:00 [info] <0.254.0> Running boot step recovery defined by app rabbit +15:03:26.101 rabbitmq> 2024-09-13 15:03:26.101243+00:00 [info] <0.254.0> Running boot step empty_db_check defined by app rabbit +15:03:26.101 rabbitmq> 2024-09-13 15:03:26.101326+00:00 [info] <0.254.0> Will seed default virtual host and user... +15:03:26.101 rabbitmq> 2024-09-13 15:03:26.101428+00:00 [info] <0.254.0> Adding vhost '/' (description: 'Default virtual host', tags: []) +15:03:26.159 rabbitmq> 2024-09-13 15:03:26.159090+00:00 [info] <0.630.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists +15:03:26.161 rabbitmq> 2024-09-13 15:03:26.161020+00:00 [info] <0.630.0> Setting segment_entry_count for vhost '/' with 0 queues to '2048' +15:03:26.179 rabbitmq> 2024-09-13 15:03:26.178911+00:00 [info] <0.630.0> Starting message stores for vhost '/' +15:03:26.179 rabbitmq> 2024-09-13 15:03:26.179138+00:00 [info] <0.639.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index +15:03:26.181 rabbitmq> 2024-09-13 15:03:26.181493+00:00 [info] <0.630.0> Started message store of type transient for vhost '/' +15:03:26.181 rabbitmq> 2024-09-13 15:03:26.181710+00:00 [info] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index +15:03:26.183 rabbitmq> 2024-09-13 15:03:26.183030+00:00 [warning] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch +15:03:26.184 rabbitmq> 2024-09-13 15:03:26.184004+00:00 [info] <0.630.0> Started message store of type persistent for vhost '/' +15:03:26.184 rabbitmq> 2024-09-13 15:03:26.184201+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_classic_queue took 22ms +15:03:26.184 rabbitmq> 2024-09-13 15:03:26.184246+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_quorum_queue took 0ms +15:03:26.184 rabbitmq> 2024-09-13 15:03:26.184311+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_stream_queue took 0ms +15:03:26.193 rabbitmq> 2024-09-13 15:03:26.192960+00:00 [info] <0.254.0> Created user 'guest' +15:03:26.200 rabbitmq> 2024-09-13 15:03:26.200288+00:00 [info] <0.254.0> Successfully set user tags for user 'guest' to [administrator] +15:03:26.208 rabbitmq> 2024-09-13 15:03:26.208088+00:00 [info] <0.254.0> Successfully set permissions for user 'guest' in virtual host '/' to '.*', '.*', '.*' +15:03:26.208 rabbitmq> 2024-09-13 15:03:26.208156+00:00 [info] <0.254.0> Running boot step rabbit_observer_cli defined by app rabbit +15:03:26.208 rabbitmq> 2024-09-13 15:03:26.208252+00:00 [info] <0.254.0> Running boot step rabbit_looking_glass defined by app rabbit +15:03:26.208 rabbitmq> 2024-09-13 15:03:26.208276+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics_gc defined by app rabbit +15:03:26.209 rabbitmq> 2024-09-13 15:03:26.208376+00:00 [info] <0.254.0> Running boot step background_gc defined by app rabbit +15:03:26.209 rabbitmq> 2024-09-13 15:03:26.208581+00:00 [info] <0.254.0> Running boot step routing_ready defined by app rabbit +15:03:26.209 rabbitmq> 2024-09-13 15:03:26.208621+00:00 [info] <0.254.0> Running boot step pre_flight defined by app rabbit +15:03:26.210 rabbitmq> 2024-09-13 15:03:26.208652+00:00 [info] <0.254.0> Running boot step notify_cluster defined by app rabbit +15:03:26.210 rabbitmq> 2024-09-13 15:03:26.208681+00:00 [info] <0.254.0> Running boot step networking defined by app rabbit +15:03:26.210 rabbitmq> 2024-09-13 15:03:26.208704+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue_periodic_membership_reconciliation defined by app rabbit +15:03:26.211 rabbitmq> 2024-09-13 15:03:26.208878+00:00 [info] <0.254.0> Running boot step definition_import_worker_pool defined by app rabbit +15:03:26.211 rabbitmq> 2024-09-13 15:03:26.208913+00:00 [info] <0.315.0> Starting worker pool 'definition_import_pool' with 4 processes in it +15:03:26.211 rabbitmq> 2024-09-13 15:03:26.209233+00:00 [info] <0.254.0> Running boot step cluster_name defined by app rabbit +15:03:26.211 rabbitmq> 2024-09-13 15:03:26.210941+00:00 [info] <0.254.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-xnww8pOg8DujX9MWkEpKGA' +15:03:26.218 rabbitmq> 2024-09-13 15:03:26.218571+00:00 [info] <0.254.0> Running boot step virtual_host_reconciliation defined by app rabbit +15:03:26.219 rabbitmq> 2024-09-13 15:03:26.218818+00:00 [info] <0.254.0> Running boot step direct_client defined by app rabbit +15:03:26.219 rabbitmq> 2024-09-13 15:03:26.218886+00:00 [info] <0.254.0> Running boot step rabbit_federation_exchange defined by app rabbitmq_federation +15:03:26.219 rabbitmq> 2024-09-13 15:03:26.219017+00:00 [info] <0.254.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management +15:03:26.219 rabbitmq> 2024-09-13 15:03:26.219165+00:00 [info] <0.680.0> Resetting node maintenance status +15:03:26.395 rabbitmq> 2024-09-13 15:03:26.394734+00:00 [warning] <0.709.0> Deprecated features: `management_metrics_collection`: Feature `management_metrics_collection` is deprecated. +15:03:26.395 rabbitmq> 2024-09-13 15:03:26.394734+00:00 [warning] <0.709.0> By default, this feature can still be used for now. +15:03:26.395 rabbitmq> 2024-09-13 15:03:26.394734+00:00 [warning] <0.709.0> Its use will not be permitted by default in a future minor RabbitMQ version and the feature will be removed from a future major RabbitMQ version; actual versions to be determined. +15:03:26.395 rabbitmq> 2024-09-13 15:03:26.394734+00:00 [warning] <0.709.0> To continue using this feature when it is not permitted by default, set the following parameter in your configuration: +15:03:26.395 rabbitmq> 2024-09-13 15:03:26.394734+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = true" +15:03:26.395 rabbitmq> 2024-09-13 15:03:26.394734+00:00 [warning] <0.709.0> To test RabbitMQ as if the feature was removed, set this in your configuration: +15:03:26.395 rabbitmq> 2024-09-13 15:03:26.394734+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = false" +15:03:29.379 rabbitmq> 2024-09-13 15:03:29.378779+00:00 [info] <0.746.0> Management plugin: HTTP (non-TLS) listener started on port 15672 +15:03:29.379 rabbitmq> 2024-09-13 15:03:29.378978+00:00 [info] <0.776.0> Statistics database started. +15:03:29.379 rabbitmq> 2024-09-13 15:03:29.379060+00:00 [info] <0.775.0> Starting worker pool 'management_worker_pool' with 3 processes in it +15:03:29.388 rabbitmq> 2024-09-13 15:03:29.387806+00:00 [info] <0.794.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692 +15:03:29.388 rabbitmq> 2024-09-13 15:03:29.387978+00:00 [info] <0.680.0> Ready to start client connection listeners +15:03:29.390 rabbitmq> 2024-09-13 15:03:29.390237+00:00 [info] <0.838.0> started TCP listener on [::]:5672 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waited on url http://localhost:15672 and on log out 'Server startup complete' 9568 ms +[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-4 +15:03:29.511 rabbitmq> completed with 5 plugins. +15:03:29.511 rabbitmq> 2024-09-13 15:03:29.511114+00:00 [info] <0.680.0> Server startup complete; 5 plugins started. +15:03:29.511 rabbitmq> 2024-09-13 15:03:29.511114+00:00 [info] <0.680.0> * rabbitmq_prometheus +15:03:29.511 rabbitmq> 2024-09-13 15:03:29.511114+00:00 [info] <0.680.0> * rabbitmq_federation +15:03:29.511 rabbitmq> 2024-09-13 15:03:29.511114+00:00 [info] <0.680.0> * rabbitmq_management +15:03:29.511 rabbitmq> 2024-09-13 15:03:29.511114+00:00 [info] <0.680.0> * rabbitmq_management_agent +15:03:29.511 rabbitmq> 2024-09-13 15:03:29.511114+00:00 [info] <0.680.0> * rabbitmq_web_dispatch +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Start container 6e9f1f0045bb +15:03:29.643 rabbitmq> 2024-09-13 15:03:29.642693+00:00 [info] <0.9.0> Time to start RabbitMQ: 9489 ms +15:03:30.901 sqs> +15:03:30.901 sqs> LocalStack version: 3.7.3.dev19 +15:03:30.901 sqs> LocalStack build date: 2024-09-13 +15:03:30.901 sqs> LocalStack build git hash: cb81582d8 +15:03:30.901 sqs> +15:03:31.496 sqs> Ready. +[INFO] DOCKER> Pattern 'Ready.' matched for container 6e9f1f0045bb +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Waited on log out 'Ready.' 2015 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container 8b00082480e3 +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Start container 5b96384fe09e +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. +15:03:33.018 worker-languagedetection> [2024-09-13 15:03:33.018Z #007.??? INFO - - ] startup.sh: Running startup scripts... +15:03:33.021 worker-languagedetection> [2024-09-13 15:03:33.020Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +15:03:33.028 worker-languagedetection> [2024-09-13 15:03:33.027Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +15:03:33.030 worker-languagedetection> [2024-09-13 15:03:33.029Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +15:03:33.038 worker-languagedetection> [2024-09-13 15:03:33.036Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +15:03:33.041 worker-languagedetection> [2024-09-13 15:03:33.040Z #007.??? INFO - - ] startup.sh: Startup scripts completed +15:03:33.044 worker-languagedetection> [2024-09-13 15:03:33.042Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +15:03:33.344 worker-languagedetection> 15:03:33,181 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +15:03:33.344 worker-languagedetection> 15:03:33,182 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +15:03:33.344 worker-languagedetection> 15:03:33,182 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +15:03:33.344 worker-languagedetection> 15:03:33,183 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +15:03:33.344 worker-languagedetection> 15:03:33,188 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +15:03:33.344 worker-languagedetection> 15:03:33,189 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +15:03:33.344 worker-languagedetection> 15:03:33,197 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +15:03:33.344 worker-languagedetection> 15:03:33,197 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +15:03:33.344 worker-languagedetection> 15:03:33,198 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +15:03:33.344 worker-languagedetection> 15:03:33,199 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +15:03:33.344 worker-languagedetection> 15:03:33,203 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +15:03:33.344 worker-languagedetection> 15:03:33,207 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +15:03:33.344 worker-languagedetection> 15:03:33,248 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +15:03:33.344 worker-languagedetection> 15:03:33,248 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +15:03:33.344 worker-languagedetection> 15:03:33,248 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +15:03:33.344 worker-languagedetection> 15:03:33,293 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +15:03:33.344 worker-languagedetection> 15:03:33,293 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +15:03:33.344 worker-languagedetection> 15:03:33,293 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +15:03:33.344 worker-languagedetection> 15:03:33,296 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +15:03:33.344 worker-languagedetection> 15:03:33,296 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +15:03:33.344 worker-languagedetection> 15:03:33,303 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +15:03:33.344 worker-languagedetection> 15:03:33,305 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +15:03:33.344 worker-languagedetection> 15:03:33,331 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +15:03:33.344 worker-languagedetection> 15:03:33,335 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +15:03:33.344 worker-languagedetection> 15:03:33,335 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +15:03:33.344 worker-languagedetection> 15:03:33,335 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +15:03:33.344 worker-languagedetection> 15:03:33,335 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +15:03:33.344 worker-languagedetection> 15:03:33,336 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +15:03:33.344 worker-languagedetection> 15:03:33,336 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +15:03:33.344 worker-languagedetection> 15:03:33,336 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +15:03:33.344 worker-languagedetection> 15:03:33,336 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 138 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY +15:03:33.344 worker-languagedetection> +15:03:33.535 worker-languagedetection> [2024-09-13 15:03:33.517Z #c8a.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +15:03:34.257 worker-languagedetection> [2024-09-13 15:03:34.257Z #c8a.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +15:03:34.258 worker-languagedetection> [2024-09-13 15:03:34.258Z #c8a.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +15:03:34.259 worker-languagedetection> [2024-09-13 15:03:34.259Z #c8a.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +15:03:34.272 worker-languagedetection> [2024-09-13 15:03:34.271Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +15:03:34.274 worker-languagedetection> [2024-09-13 15:03:34.274Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +15:03:34.275 worker-languagedetection> [2024-09-13 15:03:34.275Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +15:03:34.277 worker-languagedetection> [2024-09-13 15:03:34.276Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +15:03:34.284 worker-languagedetection> [2024-09-13 15:03:34.283Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +15:03:34.285 worker-languagedetection> [2024-09-13 15:03:34.285Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +15:03:34.286 worker-languagedetection> [2024-09-13 15:03:34.286Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +15:03:34.328 worker-languagedetection> [2024-09-13 15:03:34.327Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider +15:03:34.366 worker-languagedetection> [2024-09-13 15:03:34.362Z #c8a.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} +15:03:34.444 worker-languagedetection> [2024-09-13 15:03:34.443Z #c8a.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@65c33b92{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +15:03:34.444 worker-languagedetection> [2024-09-13 15:03:34.444Z #c8a.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@7903d448{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +15:03:34.446 worker-languagedetection> [2024-09-13 15:03:34.446Z #c8a.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS +15:03:34.456 worker-languagedetection> [2024-09-13 15:03:34.455Z #c8a.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. +15:03:34.473 worker-languagedetection> [2024-09-13 15:03:34.473Z #c8a.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE +15:03:34.476 worker-languagedetection> [2024-09-13 15:03:34.476Z #c8a.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY +15:03:34.477 worker-languagedetection> [2024-09-13 15:03:34.477Z #c8a.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY +15:03:34.494 worker-languagedetection> [2024-09-13 15:03:34.494Z #c8a.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY +15:03:34.494 worker-languagedetection> [2024-09-13 15:03:34.494Z #c8a.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE +15:03:34.495 worker-languagedetection> [2024-09-13 15:03:34.495Z #c8a.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY +15:03:34.496 worker-languagedetection> [2024-09-13 15:03:34.496Z #c8a.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE +15:03:34.498 worker-languagedetection> +15:03:34.788 worker-languagedetection> [2024-09-13 15:03:34.788Z #c8a.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} +15:03:34.790 worker-languagedetection> [2024-09-13 15:03:34.789Z #c8a.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@58f2466c{/,null,AVAILABLE} +15:03:34.793 worker-languagedetection> [2024-09-13 15:03:34.792Z #c8a.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} +15:03:34.793 worker-languagedetection> [2024-09-13 15:03:34.793Z #c8a.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@1376883{/,null,AVAILABLE} +15:03:34.801 worker-languagedetection> [2024-09-13 15:03:34.801Z #c8a.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@65c33b92{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +15:03:34.807 worker-languagedetection> [2024-09-13 15:03:34.806Z #c8a.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@7903d448{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +15:03:34.808 worker-languagedetection> [2024-09-13 15:03:34.808Z #c8a.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@43af351a{STARTING}[11.0.23,sto=30000] @1759ms +15:03:34.864 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:34 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 12 +15:03:35.368 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 +15:03:35.874 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 +15:03:36.387 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +15:03:36.891 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +15:03:37.405 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +15:03:37.909 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +15:03:38.415 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +15:03:38.928 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +15:03:39.437 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +15:03:39.953 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +15:03:40.455 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +15:03:40.961 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +15:03:41.466 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +15:03:41.970 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +15:03:42.483 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +15:03:42.991 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +15:03:43.497 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +15:03:44.005 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +15:03:44.518 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +15:03:45.024 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +15:03:45.538 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +15:03:46.051 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +15:03:46.560 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +15:03:47.072 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +15:03:47.585 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +15:03:48.091 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +15:03:48.597 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +15:03:49.103 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +15:03:49.497 worker-languagedetection> [2024-09-13 15:03:49.496Z #c8a.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE +15:03:49.543 rabbitmq> 2024-09-13 15:03:49.542892+00:00 [info] <0.845.0> accepting AMQP connection <0.845.0> (172.17.0.5:34968 -> 172.17.0.3:5672) +15:03:49.562 rabbitmq> 2024-09-13 15:03:49.561713+00:00 [info] <0.845.0> connection <0.845.0> (172.17.0.5:34968 -> 172.17.0.3:5672): user 'guest' authenticated and granted access to vhost '/' +15:03:49.570 worker-languagedetection> [2024-09-13 15:03:49.570Z #c8a.034 WARN - - ] c.h.c.util.rabbitmq.RabbitUtil: Priority is not supported with quorum queues +15:03:49.608 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +15:03:49.634 rabbitmq> 2024-09-13 15:03:49.633907+00:00 [notice] <0.866.0> queue 'LanguageDetectionWorker-input-1' in vhost '/': candidate -> leader in term: 1 machine version: 3 +15:03:49.634 rabbitmq> 2024-09-13 15:03:49.634145+00:00 [info] <0.860.0> ra: started cluster %2F_LanguageDetectionWorker-input-1 with 1 servers +15:03:49.634 rabbitmq> 2024-09-13 15:03:49.634145+00:00 [info] <0.860.0> 0 servers failed to start: [] +15:03:49.634 rabbitmq> 2024-09-13 15:03:49.634145+00:00 [info] <0.860.0> Leader: {'%2F_LanguageDetectionWorker-input-1',rabbit@5be5395a1c9d} +15:03:49.656 worker-languagedetection> [2024-09-13 15:03:49.656Z #c8a.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE +15:03:49.656 worker-languagedetection> [2024-09-13 15:03:49.656Z #c8a.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY +15:03:49.656 worker-languagedetection> [2024-09-13 15:03:49.656Z #c8a.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE +15:03:49.658 worker-languagedetection> [2024-09-13 15:03:49.657Z #c8a.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY +15:03:49.658 worker-languagedetection> [2024-09-13 15:03:49.657Z #c8a.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY +15:03:49.658 worker-languagedetection> [2024-09-13 15:03:49.657Z #c8a.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waited on url http://localhost:8082/health-check?type=READY 17074 ms +15:03:50.113 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:50 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +[INFO] +[INFO] --- failsafe:3.1.2:integration-test (sqs-implementation-testing) @ worker-languagedetection-container --- +[INFO] Tests are skipped. +[INFO] +[INFO] --- failsafe:3.1.2:integration-test (rabbit-implementation-testing) @ worker-languagedetection-container --- +[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider +[INFO] +[INFO] ------------------------------------------------------- +[INFO] T E S T S +[INFO] ------------------------------------------------------- +[INFO] Running com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT +16:03:50,855 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +16:03:50,860 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - No custom configurators were discovered as a service. +16:03:50,860 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +16:03:50,862 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +16:03:50,869 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +16:03:50,870 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +16:03:50,878 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 9 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +16:03:50,878 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +16:03:50,880 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +16:03:50,881 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +16:03:50,885 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] +16:03:50,901 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@b2c9a9c - URL [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +16:03:50,977 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +16:03:50,977 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +16:03:50,977 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +16:03:51,069 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +16:03:51,069 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +16:03:51,069 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +16:03:51,080 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +16:03:51,080 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +16:03:51,093 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +16:03:51,095 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +16:03:51,191 |-INFO in ch.qos.logback.classic.pattern.DateConverter@fa4c865 - Setting zoneId to "UTC" +16:03:51,195 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +16:03:51,195 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +16:03:51,195 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +16:03:51,197 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +16:03:51,197 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +16:03:51,197 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@3bd82cf5 - End of configuration. +16:03:51,197 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@544fa968 - Registering current configuration as safe fallback point +16:03:51,198 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 317 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +15:03:52.960 rabbitmq> 2024-09-13 15:03:52.960431+00:00 [info] <0.871.0> accepting AMQP connection <0.871.0> (192.168.1.1:60066 -> 172.17.0.3:5672) +15:03:53.101 rabbitmq> 2024-09-13 15:03:53.101110+00:00 [info] <0.871.0> connection <0.871.0> (192.168.1.1:60066 -> 172.17.0.3:5672): user 'guest' authenticated and granted access to vhost '/' +15:03:53.175 rabbitmq> 2024-09-13 15:03:53.175265+00:00 [notice] <0.891.0> queue 'LanguageDetectionWorker-output-1' in vhost '/': candidate -> leader in term: 1 machine version: 3 +15:03:53.175 rabbitmq> 2024-09-13 15:03:53.175446+00:00 [info] <0.885.0> ra: started cluster %2F_LanguageDetectionWorker-output-1 with 1 servers +15:03:53.175 rabbitmq> 2024-09-13 15:03:53.175446+00:00 [info] <0.885.0> 0 servers failed to start: [] +15:03:53.175 rabbitmq> 2024-09-13 15:03:53.175446+00:00 [info] <0.885.0> Leader: {'%2F_LanguageDetectionWorker-output-1',rabbit@5be5395a1c9d} +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_field_multi_lang_en_fr_ger.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_multi_datasource.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_single_datasource.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_invalid.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple_multi.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_english.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_french.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_german.yaml.testcase + +=============== Starting test Item resultFormat_complex_invalid_combined.yaml ====================== +15:03:53.715 worker-languagedetection> [2024-09-13 15:03:53.715Z #c8a.054 WARN - - ] c.h.c.util.rabbitmq.RabbitUtil: Priority is not supported with quorum queues +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid_combined.yaml +================================================================================ +New deliveryresultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 1 +Number of successful test cases (all test instances passes): 1 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_invalid.yaml ====================== +15:03:53.837 worker-languagedetection> [2024-09-13 15:03:53.836Z #c8a.054 ERROR - - ] c.h.c.w.l.LanguageDetectionWorker: Failed to read result format specified. +================================================================================ + QUEUEING NEW TASK: resultFormat_invalid.yaml +================================================================================ +New deliveryresultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_invalid.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_invalid.yaml +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 2 +Number of successful test cases (all test instances passes): 2 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_simple.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_simple.yaml +================================================================================ +New deliveryresultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_simple.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_simple.yaml +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 3 +Number of successful test cases (all test instances passes): 3 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid_split.yaml +================================================================================ +New deliveryresultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 4 +Number of successful test cases (all test instances passes): 4 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_split.yaml +================================================================================ +New deliveryresultFormat_complex_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 5 +Number of successful test cases (all test instances passes): 5 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang.yaml +================================================================================ +New deliveryresultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 6 +Number of successful test cases (all test instances passes): 6 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang_split.yaml +================================================================================ +New deliveryresultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 7 +Number of successful test cases (all test instances passes): 7 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_lang_multi_datasource.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_lang_multi_datasource.yaml +================================================================================ +New deliverymulti_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_lang_multi_datasource.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 8 +Number of successful test cases (all test instances passes): 8 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item single_lang_english.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_english.yaml +================================================================================ +New deliverysingle_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_english.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_english.yaml +Description: null +Associated tickets: null +Comments: single_lang_english.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 9 +Number of successful test cases (all test instances passes): 9 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid.yaml +================================================================================ +New deliveryresultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 10 +Number of successful test cases (all test instances passes): 10 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_field_multi_lang_en_fr_ger.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_field_multi_lang_en_fr_ger.yaml +================================================================================ +New deliverymulti_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODE_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_FR_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_GER_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_field_multi_lang_en_fr_ger.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 11 +Number of successful test cases (all test instances passes): 11 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_simple_multi.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_simple_multi.yaml +================================================================================ +New deliveryresultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODE_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_FR_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_GER_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_simple_multi.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_simple_multi.yaml +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 12 +Number of successful test cases (all test instances passes): 12 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item single_lang_french.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_french.yaml +================================================================================ +New deliverysingle_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_french.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_french.yaml +Description: null +Associated tickets: null +Comments: single_lang_french.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 13 +Number of successful test cases (all test instances passes): 13 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown_split.yaml +================================================================================ +New deliveryresultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 14 +Number of successful test cases (all test instances passes): 14 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_lang_single_datasource.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_lang_single_datasource.yaml +================================================================================ +New deliverymulti_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_lang_single_datasource.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_lang_single_datasource.yaml +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 15 +Number of successful test cases (all test instances passes): 15 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_combined.yaml +================================================================================ +New deliveryresultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 16 +Number of successful test cases (all test instances passes): 16 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang_combined.yaml +================================================================================ +New deliveryresultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 17 +Number of successful test cases (all test instances passes): 17 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown.yaml +================================================================================ +New deliveryresultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 18 +Number of successful test cases (all test instances passes): 18 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item single_lang_german.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_german.yaml +================================================================================ +New deliverysingle_lang_german.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_german.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_german.yaml +Description: null +Associated tickets: null +Comments: single_lang_german.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_german.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_german.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 19 +Number of successful test cases (all test instances passes): 19 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex.yaml +================================================================================ +New deliveryresultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_german.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_german.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 20 +Number of successful test cases (all test instances passes): 20 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown_combined.yaml +================================================================================ +New deliveryresultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_german.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_german.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 21 +Number of successful test cases (all test instances passes): 21 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== +15:03:54.819 rabbitmq> 2024-09-13 15:03:54.818985+00:00 [info] <0.871.0> closing AMQP connection <0.871.0> (192.168.1.1:60066 -> 172.17.0.3:5672, vhost: '/', user: 'guest') +Closing queue connection +[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.256 s -- in com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT +[INFO] +[INFO] Results: +[INFO] +[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0 +[INFO] +[INFO] +[INFO] --- docker:0.43.4:stop (stop) @ worker-languagedetection-container --- +15:03:55.214 worker-languagedetection> [2024-09-13 15:03:55.213Z #c8a.033 INFO - - ] o.eclipse.jetty.server.Server: Stopped Server@43af351a{STOPPING}[11.0.23,sto=30000] +15:03:55.214 worker-languagedetection> [2024-09-13 15:03:55.214Z #c8a.033 INFO - - ] o.eclipse.jetty.server.Server: Shutdown Server@43af351a{STOPPING}[11.0.23,sto=30000] +15:03:55.216 worker-languagedetection> [2024-09-13 15:03:55.216Z #c8a.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped application@65c33b92{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +15:03:55.217 worker-languagedetection> [2024-09-13 15:03:55.217Z #c8a.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped admin@7903d448{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +15:03:55.218 worker-languagedetection> [2024-09-13 15:03:55.218Z #c8a.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@1376883{/,null,STOPPED} +15:03:55.226 worker-languagedetection> [2024-09-13 15:03:55.226Z #c8a.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@58f2466c{/,null,STOPPED} +15:03:55.228 worker-languagedetection> [2024-09-13 15:03:55.228Z #c8a.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stop requested, allowing in-progress tasks to complete. +15:03:55.241 rabbitmq> 2024-09-13 15:03:55.241224+00:00 [info] <0.845.0> closing AMQP connection <0.845.0> (172.17.0.5:34968 -> 172.17.0.3:5672, vhost: '/', user: 'guest') +15:03:55.241 worker-languagedetection> [2024-09-13 15:03:55.241Z #c8a.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stopped. +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Stop and removed container 5b96384fe09e after 0 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container 8b00082480e3 after 0 ms +15:03:56.476 sqs> Localstack runtime received signal 15 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Stop and removed container 6e9f1f0045bb after 0 ms +15:04:01.645 rabbitmq> 2024-09-13 15:04:01.645041+00:00 [notice] <0.64.0> SIGTERM received - shutting down +15:04:01.645 rabbitmq> 2024-09-13 15:04:01.645041+00:00 [notice] <0.64.0> +15:04:01.647 rabbitmq> 2024-09-13 15:04:01.646789+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_prometheus_tls +15:04:01.653 rabbitmq> 2024-09-13 15:04:01.652633+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_management_tls +15:04:01.662 rabbitmq> 2024-09-13 15:04:01.661734+00:00 [info] <0.838.0> stopped TCP listener on [::]:5672 +15:04:01.663 rabbitmq> 2024-09-13 15:04:01.662658+00:00 [info] <0.630.0> Virtual host '/' is stopping +15:04:01.663 rabbitmq> 2024-09-13 15:04:01.662773+00:00 [info] <0.926.0> Closing all connections in vhost '/' on node 'rabbit@5be5395a1c9d' because the vhost is stopping +15:04:01.663 rabbitmq> 2024-09-13 15:04:01.662864+00:00 [info] <0.643.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' +15:04:01.674 rabbitmq> 2024-09-13 15:04:01.673951+00:00 [info] <0.643.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' is stopped +15:04:01.674 rabbitmq> 2024-09-13 15:04:01.674104+00:00 [info] <0.639.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' +15:04:01.684 rabbitmq> 2024-09-13 15:04:01.684146+00:00 [info] <0.639.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' is stopped +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Stop and removed container 5be5395a1c9d after 0 ms +15:04:03.914 webdav> ++ _term +15:04:03.914 webdav> ++ echo 'Caught SIGTERM signal!' +15:04:03.914 webdav> ++ kill -TERM '' +15:04:03.914 webdav> Caught SIGTERM signal! +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container 9d60a115a88a after 0 ms +[INFO] +[INFO] --- license:4.3:check (check-license-headers) @ worker-languagedetection-container --- +[INFO] Checking licenses... +[INFO] +[INFO] --- dependency:3.6.0:analyze-only (check-dependencies) @ worker-languagedetection-container --- +[INFO] Skipping pom project +[INFO] +[INFO] --- duplicate-finder:2.0.1:check (deepcheck-dependencies) @ worker-languagedetection-container --- +[INFO] Ignoring POM project! +[INFO] +[INFO] --- failsafe:3.1.2:verify (sqs-implementation-testing) @ worker-languagedetection-container --- +[INFO] Tests are skipped. +[INFO] +[INFO] --- failsafe:3.1.2:verify (rabbit-implementation-testing) @ worker-languagedetection-container --- +[INFO] +[INFO] --- install:3.1.1:install (default-install) @ worker-languagedetection-container --- +[INFO] Skipping artifact installation +[INFO] +[INFO] --- docker-versions:1.0.0-29:depopulate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 02:29 min +[INFO] Finished at: 2024-09-13T16:04:06+01:00 +[INFO] ------------------------------------------------------------------------ diff --git a/pom.xml b/pom.xml index 2e5b566..b2445f7 100644 --- a/pom.xml +++ b/pom.xml @@ -63,6 +63,7 @@ ${dockerVersionSeperator}${project.version} worker-languagedetection-${project.version}.project-registries.local 8.2.0-US922349-SNAPSHOT + 3.1.0-US922349-SNAPSHOT @@ -341,12 +342,12 @@ com.github.workerframework.testing workerframework-testing-integration - 3.0.0-205 + ${worker.framework.testing.version} com.github.workerframework.testing workerframework-testing-util - 3.0.0-205 + ${worker.framework.testing.version} com.google.code.findbugs diff --git a/worker-languagedetection-container/pom.xml b/worker-languagedetection-container/pom.xml index 4085b90..a86625f 100644 --- a/worker-languagedetection-container/pom.xml +++ b/worker-languagedetection-container/pom.xml @@ -37,6 +37,9 @@ true ${project.basedir}/test-data/input ${project.basedir}/test-configs + false + true + rabbitmq @@ -145,26 +148,55 @@ maven-failsafe-plugin + sqs-implementation-testing integration-test verify + + ${skip-sqs} + + + true + ${sqs.ctrl.port} + sqs.us-east-1.localhost.localstack.cloud + + + test/worker-languagedetection + + + + + rabbit-implementation-testing + + integration-test + verify + + + ${skip-rabbit} + + + true + ${worker.restport} + ${worker.adminport} + ${rabbitmq.node.port} + ${rabbitmq.ctrl.port} + + + test/worker-languagedetection + + ${docker.host.address} - ${worker.restport} - ${worker.adminport} - ${rabbitmq.node.port} - ${rabbitmq.ctrl.port} ${test.data} ${test.data} false - true + ${messaging.implementation} - test/worker-languagedetection ${test.configs} \\${docker.host.address}@${webdav.apache.port}\webdav http://${docker.host.address}:${webdav.apache.port}/webdav @@ -252,35 +284,35 @@ - - - - - - - - - - - - - - - - - - - - - + + rabbitmq + ${projectDockerRegistry}/library/rabbitmq + + + ${rabbitmq.ctrl.port}:15672 + ${rabbitmq.node.port}:5672 + + + Server startup complete + + http://${docker.host.address}:${rabbitmq.ctrl.port} + + + 500 + + + true + + + - localstack + sqs ${projectDockerRegistry}/localstack/localstack - 14566:4566 + ${sqs.ctrl.port}:4566 @@ -378,12 +410,13 @@ - ${worker.restport}:8080 - ${worker.adminport}:8081 + ${sqs.worker.restport}:8080 + ${sqs.worker.adminport}:8081 test/worker-languagedetection /config + ${messaging.implementation} @@ -392,21 +425,20 @@ - localstack + ${messaging.implementation} true - http://${docker.host.address}:${worker.restport}/health-check?type=READY + http://${docker.host.address}:${sqs.worker.restport}/health-check?type=READY 500 - @@ -414,6 +446,14 @@ + + run-sqs + + true + false + sqs + + @@ -448,6 +488,9 @@ 28080 8080 8081 + 8082 + 8083 + 14566 diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration index 683b0f6..e8df564 100644 --- a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration +++ b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration @@ -1,3 +1,3 @@ { - "implementation": "sqs" + "implementation": "${CAF_MESSAGING_IMPLEMENTATION:-this_should_get_ignored}" } diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration index e17b70e..f277bf8 100644 --- a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration +++ b/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration @@ -1,6 +1,6 @@ { "awsProtocol": "http", - "awsHost": "localstack", + "awsHost": "sqs", "awsPort": 4566, "awsRegion": "us-east-1", "awsAccessKey": "x", From ccc688d6476876190ab9e6f6f3b3a3cf7a82cdfd Mon Sep 17 00:00:00 2001 From: David Milligan Date: Mon, 16 Sep 2024 11:02:48 +0100 Subject: [PATCH 11/21] Run tests for both sqs and rabbit --- build.log | 29751 ---------------- worker-languagedetection-container/build.log | 13050 +++++++ worker-languagedetection-container/pom.xml | 97 +- ...uagedetection~DocumentWorkerConfiguration} | 0 ...etection~FileSystemDataStoreConfiguration} | 0 ...ker-languagedetection~HealthConfiguration} | 0 ...guagedetection~HttpDataStoreConfiguration} | 0 ...tion~LanguageDetectionWorkerConfiguration} | 0 ...guagedetection~MessageSystemConfiguration} | 0 ...ker-languagedetection~RabbitConfiguration} | 0 ...edetection~RabbitWorkerQueueConfiguration} | 0 ...guagedetection~DocumentWorkerConfiguration | 8 + ...detection~FileSystemDataStoreConfiguration | 3 + ...rker-languagedetection~HealthConfiguration | 12 + ...nguagedetection~HttpDataStoreConfiguration | 3 + ...ction~LanguageDetectionWorkerConfiguration | 3 + ...nguagedetection~MessageSystemConfiguration | 3 + ...worker-languagedetection~SQSConfiguration} | 0 ...uagedetection~SQSWorkerQueueConfiguration} | 2 +- 19 files changed, 13158 insertions(+), 29774 deletions(-) delete mode 100644 build.log create mode 100644 worker-languagedetection-container/build.log rename worker-languagedetection-container/test-configs/{cfg~test~worker-languagedetection~DocumentWorkerConfiguration => cfg~test~rabbitmq-worker-languagedetection~DocumentWorkerConfiguration} (100%) rename worker-languagedetection-container/test-configs/{cfg~test~worker-languagedetection~FileSystemDataStoreConfiguration => cfg~test~rabbitmq-worker-languagedetection~FileSystemDataStoreConfiguration} (100%) rename worker-languagedetection-container/test-configs/{cfg~test~worker-languagedetection~HealthConfiguration => cfg~test~rabbitmq-worker-languagedetection~HealthConfiguration} (100%) rename worker-languagedetection-container/test-configs/{cfg~test~worker-languagedetection~HttpDataStoreConfiguration => cfg~test~rabbitmq-worker-languagedetection~HttpDataStoreConfiguration} (100%) rename worker-languagedetection-container/test-configs/{cfg~test~worker-languagedetection~LanguageDetectionWorkerConfiguration => cfg~test~rabbitmq-worker-languagedetection~LanguageDetectionWorkerConfiguration} (100%) rename worker-languagedetection-container/test-configs/{cfg~test~worker-languagedetection~MessageSystemConfiguration => cfg~test~rabbitmq-worker-languagedetection~MessageSystemConfiguration} (100%) rename worker-languagedetection-container/test-configs/{cfg~test~worker-languagedetection~RabbitConfiguration => cfg~test~rabbitmq-worker-languagedetection~RabbitConfiguration} (100%) rename worker-languagedetection-container/test-configs/{cfg~test~worker-languagedetection~RabbitWorkerQueueConfiguration => cfg~test~rabbitmq-worker-languagedetection~RabbitWorkerQueueConfiguration} (100%) create mode 100644 worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~DocumentWorkerConfiguration create mode 100644 worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~FileSystemDataStoreConfiguration create mode 100644 worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~HealthConfiguration create mode 100644 worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~HttpDataStoreConfiguration create mode 100644 worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~LanguageDetectionWorkerConfiguration create mode 100644 worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~MessageSystemConfiguration rename worker-languagedetection-container/test-configs/{cfg~test~worker-languagedetection~SQSConfiguration => cfg~test~sqs-worker-languagedetection~SQSConfiguration} (100%) rename worker-languagedetection-container/test-configs/{cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration => cfg~test~sqs-worker-languagedetection~SQSWorkerQueueConfiguration} (92%) diff --git a/build.log b/build.log deleted file mode 100644 index 8dbfaf6..0000000 --- a/build.log +++ /dev/null @@ -1,29751 +0,0 @@ -[INFO] Scanning for projects... -[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] -[INFO] Inspecting build with total of 1 modules... -[INFO] Installing Nexus Staging features: -[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin -[INFO] -[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- -[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT -[INFO] from pom.xml -[INFO] --------------------------------[ pom ]--------------------------------- -[INFO] -[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] -[INFO] -[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- -[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target -[INFO] -[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- -[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed -[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed -[INFO] -[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- -[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true -[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container -[INFO] Git info extracted in 273ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' -[INFO] -[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- -[INFO] Using plugin classloader, includes GMavenPlus and project classpath. -[INFO] Using Groovy 3.0.19 to perform execute. -[INFO] -[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- -[INFO] Updating license headers... -[INFO] -[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- -[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar -[INFO] -[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- -[INFO] Copying 2 resources from src/main/config to target/config-files -[INFO] -[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- -[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox -[INFO] DOCKER> -[INFO] DOCKER> ---> 6fd955f66c23 -[INFO] DOCKER> Step 2/4 : COPY maven /config/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> a2fc7b236f6a -[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 812e68848b67 -[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 4a9eb07106d2 -[INFO] DOCKER> Successfully built 4a9eb07106d2 -[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:4a9eb -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Created docker-build.tar in 1 minute and 13 seconds -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 -[INFO] DOCKER> -[INFO] DOCKER> ---> 0f51baaf46f5 -[INFO] DOCKER> Step 2/4 : COPY maven /maven/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 91e7f56ef8cf -[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 002fc83963fa -[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 2adee4e4f048 -[INFO] DOCKER> Successfully built 2adee4e4f048 -[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Built image sha256:2adee -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/sqs-worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/sqs-worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Created docker-build.tar in 1 minute and 6 seconds -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 -[INFO] DOCKER> -[INFO] DOCKER> ---> 0f51baaf46f5 -[INFO] DOCKER> Step 2/4 : COPY maven /maven/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 91e7f56ef8cf -[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 002fc83963fa -[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 2adee4e4f048 -[INFO] DOCKER> Successfully built 2adee4e4f048 -[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Built image sha256:2adee -[INFO] -[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- -[INFO] Changes detected - recompiling the module! :source -[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes -[INFO] -[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- -[INFO] -[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- -[INFO] Not executing Javadoc as the project is not a Java classpath-capable package -[INFO] -[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container a08457f6b776 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. -14:02:44.856 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf -14:02:44.858 webdav> + getent passwd 33 -14:02:44.858 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin -14:02:44.858 webdav> + useradd -r webdav -u 33 -g 33 -14:02:44.892 webdav> useradd: UID 33 is not unique -14:02:44.892 webdav> + mkdir -p /srv/common/webdav -14:02:44.892 webdav> + chown 33 /srv/common/webdav -14:02:44.892 webdav> + trap _term SIGTERM -14:02:44.892 webdav> + pid=12 -14:02:44.892 webdav> + wait 12 -14:02:44.892 webdav> + /usr/sbin/apache2 -D FOREGROUND -14:02:44.901 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -14:02:44.905 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -14:02:44.907 webdav> [Fri Sep 13 14:02:44.907363 2024] [mpm_event:notice] [pid 12:tid 139911249037184] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations -14:02:44.907 webdav> [Fri Sep 13 14:02:44.907704 2024] [core:notice] [pid 12:tid 139911249037184] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' -14:02:44.993 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:14:02:44 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 105 ms -[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Start container d5371c7ce138 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waiting on url http://localhost:15672 with method HEAD for status 200..399. -14:02:48.632 rabbitmq> 2024-09-13 14:02:48.625920+00:00 [notice] <0.44.0> Application syslog exited with reason: stopped -14:02:48.632 rabbitmq> 2024-09-13 14:02:48.631667+00:00 [notice] <0.254.0> Logging: switching to configured handler(s); following messages may not be visible in this log output -14:02:48.632 rabbitmq> 2024-09-13 14:02:48.632249+00:00 [notice] <0.254.0> Logging: configured log handlers are now ACTIVE -14:02:48.642 rabbitmq> 2024-09-13 14:02:48.641902+00:00 [info] <0.254.0> ra: starting system quorum_queues -14:02:48.642 rabbitmq> 2024-09-13 14:02:48.641967+00:00 [info] <0.254.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/quorum/rabbit@d5371c7ce138 -14:02:48.709 rabbitmq> 2024-09-13 14:02:48.708779+00:00 [info] <0.268.0> ra system 'quorum_queues' running pre init for 0 registered servers -14:02:48.721 rabbitmq> 2024-09-13 14:02:48.721304+00:00 [info] <0.269.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered -14:02:48.737 rabbitmq> 2024-09-13 14:02:48.736561+00:00 [notice] <0.274.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables -14:02:48.771 rabbitmq> 2024-09-13 14:02:48.771633+00:00 [info] <0.254.0> ra: starting system coordination -14:02:48.771 rabbitmq> 2024-09-13 14:02:48.771689+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/coordination/rabbit@d5371c7ce138 -14:02:48.773 rabbitmq> 2024-09-13 14:02:48.773518+00:00 [info] <0.282.0> ra system 'coordination' running pre init for 0 registered servers -14:02:48.776 rabbitmq> 2024-09-13 14:02:48.775637+00:00 [info] <0.283.0> ra: meta data store initialised for system coordination. 0 record(s) recovered -14:02:48.776 rabbitmq> 2024-09-13 14:02:48.775876+00:00 [notice] <0.288.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables -14:02:48.784 rabbitmq> 2024-09-13 14:02:48.784102+00:00 [info] <0.254.0> ra: starting system coordination -14:02:48.784 rabbitmq> 2024-09-13 14:02:48.784161+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/coordination/rabbit@d5371c7ce138 -14:02:48.895 rabbitmq> 2024-09-13 14:02:48.895113+00:00 [info] <0.254.0> Waiting for Khepri leader for 30000 ms, 9 retries left -14:02:48.911 rabbitmq> 2024-09-13 14:02:48.911275+00:00 [notice] <0.292.0> RabbitMQ metadata store: candidate -> leader in term: 1 machine version: 1 -14:02:48.918 rabbitmq> 2024-09-13 14:02:48.918256+00:00 [info] <0.254.0> Khepri leader elected -14:02:48.918 rabbitmq> 2024-09-13 14:02:48.918314+00:00 [info] <0.254.0> Waiting for Khepri projections for 30000 ms, 9 retries left -14:02:49.266 rabbitmq> 2024-09-13 14:02:49.265952+00:00 [info] <0.254.0> -14:02:49.266 rabbitmq> 2024-09-13 14:02:49.265952+00:00 [info] <0.254.0> Starting RabbitMQ 3.13.7 on Erlang 26.2.5.3 [jit] -14:02:49.266 rabbitmq> 2024-09-13 14:02:49.265952+00:00 [info] <0.254.0> Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries -14:02:49.266 rabbitmq> 2024-09-13 14:02:49.265952+00:00 [info] <0.254.0> Licensed under the MPL 2.0. Website: https://rabbitmq.com -14:02:49.267 rabbitmq> -14:02:49.267 rabbitmq> ## ## RabbitMQ 3.13.7 -14:02:49.267 rabbitmq> ## ## -14:02:49.267 rabbitmq> ########## Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries -14:02:49.267 rabbitmq> ###### ## -14:02:49.267 rabbitmq> ########## Licensed under the MPL 2.0. Website: https://rabbitmq.com -14:02:49.267 rabbitmq> -14:02:49.267 rabbitmq> Erlang: 26.2.5.3 [jit] -14:02:49.267 rabbitmq> TLS Library: OpenSSL - OpenSSL 3.1.7 3 Sep 2024 -14:02:49.267 rabbitmq> Release series support status: see https://www.rabbitmq.com/release-information -14:02:49.267 rabbitmq> -14:02:49.267 rabbitmq> Doc guides: https://www.rabbitmq.com/docs -14:02:49.267 rabbitmq> Support: https://www.rabbitmq.com/docs/contact -14:02:49.267 rabbitmq> Tutorials: https://www.rabbitmq.com/tutorials -14:02:49.267 rabbitmq> Monitoring: https://www.rabbitmq.com/docs/monitoring -14:02:49.267 rabbitmq> Upgrading: https://www.rabbitmq.com/docs/upgrade -14:02:49.267 rabbitmq> -14:02:49.267 rabbitmq> Logs: -14:02:49.267 rabbitmq> -14:02:49.267 rabbitmq> Config file(s): /etc/rabbitmq/conf.d/10-defaults.conf -14:02:49.267 rabbitmq> -14:02:49.267 rabbitmq> Starting broker...2024-09-13 14:02:49.267797+00:00 [info] <0.254.0> -14:02:49.267 rabbitmq> 2024-09-13 14:02:49.267797+00:00 [info] <0.254.0> node : rabbit@d5371c7ce138 -14:02:49.268 rabbitmq> 2024-09-13 14:02:49.267797+00:00 [info] <0.254.0> home dir : /var/lib/rabbitmq -14:02:49.268 rabbitmq> 2024-09-13 14:02:49.267797+00:00 [info] <0.254.0> config file(s) : /etc/rabbitmq/conf.d/10-defaults.conf -14:02:49.268 rabbitmq> 2024-09-13 14:02:49.267797+00:00 [info] <0.254.0> cookie hash : JALPYMNFIK+qPbuJwfQWzA== -14:02:49.268 rabbitmq> 2024-09-13 14:02:49.267797+00:00 [info] <0.254.0> log(s) : -14:02:49.268 rabbitmq> 2024-09-13 14:02:49.267797+00:00 [info] <0.254.0> data dir : /var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138 -14:02:49.601 rabbitmq> 2024-09-13 14:02:49.600823+00:00 [info] <0.254.0> Running boot step pre_boot defined by app rabbit -14:02:49.601 rabbitmq> 2024-09-13 14:02:49.600900+00:00 [info] <0.254.0> Running boot step rabbit_global_counters defined by app rabbit -14:02:49.601 rabbitmq> 2024-09-13 14:02:49.601221+00:00 [info] <0.254.0> Running boot step rabbit_osiris_metrics defined by app rabbit -14:02:49.602 rabbitmq> 2024-09-13 14:02:49.601312+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics defined by app rabbit -14:02:49.602 rabbitmq> 2024-09-13 14:02:49.601561+00:00 [info] <0.254.0> Running boot step rabbit_alarm defined by app rabbit -14:02:49.613 rabbitmq> 2024-09-13 14:02:49.612860+00:00 [info] <0.329.0> Memory high watermark set to 6399 MiB (6710412902 bytes) of 15998 MiB (16776032256 bytes) total -14:02:49.616 rabbitmq> 2024-09-13 14:02:49.616129+00:00 [info] <0.331.0> Enabling free disk space monitoring (disk free space: 970246447104, total memory: 16776032256) -14:02:49.617 rabbitmq> 2024-09-13 14:02:49.616228+00:00 [info] <0.331.0> Disk free limit set to 50MB -14:02:49.618 rabbitmq> 2024-09-13 14:02:49.618643+00:00 [info] <0.254.0> Running boot step code_server_cache defined by app rabbit -14:02:49.619 rabbitmq> 2024-09-13 14:02:49.618759+00:00 [info] <0.254.0> Running boot step file_handle_cache defined by app rabbit -14:02:49.626 rabbitmq> 2024-09-13 14:02:49.626454+00:00 [info] <0.334.0> Limiting to approx 1048479 file handles (943629 sockets) -14:02:49.626 rabbitmq> 2024-09-13 14:02:49.626593+00:00 [info] <0.335.0> FHC read buffering: OFF -14:02:49.626 rabbitmq> 2024-09-13 14:02:49.626634+00:00 [info] <0.335.0> FHC write buffering: ON -14:02:49.627 rabbitmq> 2024-09-13 14:02:49.626952+00:00 [info] <0.254.0> Running boot step worker_pool defined by app rabbit -14:02:49.627 rabbitmq> 2024-09-13 14:02:49.627065+00:00 [info] <0.315.0> Will use 4 processes for default worker pool -14:02:49.627 rabbitmq> 2024-09-13 14:02:49.627104+00:00 [info] <0.315.0> Starting worker pool 'worker_pool' with 4 processes in it -14:02:49.628 rabbitmq> 2024-09-13 14:02:49.627394+00:00 [info] <0.254.0> Running boot step database defined by app rabbit -14:02:49.628 rabbitmq> 2024-09-13 14:02:49.627802+00:00 [info] <0.254.0> Peer discovery: configured backend: rabbit_peer_discovery_classic_config -14:02:49.630 rabbitmq> 2024-09-13 14:02:49.629855+00:00 [notice] <0.316.0> Feature flags: attempt to enable `detailed_queues_endpoint`... -14:02:49.700 rabbitmq> 2024-09-13 14:02:49.699682+00:00 [notice] <0.316.0> Feature flags: `detailed_queues_endpoint` enabled -14:02:49.700 rabbitmq> 2024-09-13 14:02:49.699789+00:00 [notice] <0.316.0> Feature flags: attempt to enable `quorum_queue_non_voters`... -14:02:49.770 rabbitmq> 2024-09-13 14:02:49.770024+00:00 [notice] <0.316.0> Feature flags: `quorum_queue_non_voters` enabled -14:02:49.770 rabbitmq> 2024-09-13 14:02:49.770208+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_update_config_command`... -14:02:49.843 rabbitmq> 2024-09-13 14:02:49.843042+00:00 [notice] <0.316.0> Feature flags: `stream_update_config_command` enabled -14:02:49.843 rabbitmq> 2024-09-13 14:02:49.843214+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_filtering`... -14:02:49.914 rabbitmq> 2024-09-13 14:02:49.914093+00:00 [notice] <0.316.0> Feature flags: `stream_filtering` enabled -14:02:49.915 rabbitmq> 2024-09-13 14:02:49.914231+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_sac_coordinator_unblock_group`... -14:02:49.987 rabbitmq> 2024-09-13 14:02:49.986822+00:00 [notice] <0.316.0> Feature flags: `stream_sac_coordinator_unblock_group` enabled -14:02:49.988 rabbitmq> 2024-09-13 14:02:49.986966+00:00 [notice] <0.316.0> Feature flags: attempt to enable `restart_streams`... -14:02:50.057 rabbitmq> 2024-09-13 14:02:50.057326+00:00 [notice] <0.316.0> Feature flags: `restart_streams` enabled -14:02:50.057 rabbitmq> 2024-09-13 14:02:50.057501+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers`... -14:02:50.129 rabbitmq> 2024-09-13 14:02:50.129072+00:00 [notice] <0.316.0> Feature flags: `message_containers` enabled -14:02:50.129 rabbitmq> 2024-09-13 14:02:50.129200+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers_deaths_v2`... -14:02:50.201 rabbitmq> 2024-09-13 14:02:50.201095+00:00 [notice] <0.316.0> Feature flags: `message_containers_deaths_v2` enabled -14:02:50.201 rabbitmq> 2024-09-13 14:02:50.201346+00:00 [info] <0.254.0> DB: virgin node -> run peer discovery -14:02:50.201 rabbitmq> 2024-09-13 14:02:50.201404+00:00 [warning] <0.254.0> Classic peer discovery backend: list of nodes does not contain the local node [] -14:02:50.213 rabbitmq> 2024-09-13 14:02:50.212701+00:00 [notice] <0.44.0> Application mnesia exited with reason: stopped -14:02:50.514 rabbitmq> 2024-09-13 14:02:50.514148+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -14:02:50.515 rabbitmq> 2024-09-13 14:02:50.514436+00:00 [info] <0.254.0> Successfully synced tables from a peer -14:02:50.515 rabbitmq> 2024-09-13 14:02:50.514643+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -14:02:50.516 rabbitmq> 2024-09-13 14:02:50.514776+00:00 [info] <0.254.0> Successfully synced tables from a peer -14:02:50.539 rabbitmq> 2024-09-13 14:02:50.538710+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -14:02:50.539 rabbitmq> 2024-09-13 14:02:50.538897+00:00 [info] <0.254.0> Successfully synced tables from a peer -14:02:50.539 rabbitmq> 2024-09-13 14:02:50.539113+00:00 [info] <0.254.0> Running boot step tracking_metadata_store defined by app rabbit -14:02:50.540 rabbitmq> 2024-09-13 14:02:50.539187+00:00 [info] <0.558.0> Setting up a table for connection tracking on this node: tracked_connection -14:02:50.540 rabbitmq> 2024-09-13 14:02:50.539229+00:00 [info] <0.558.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost -14:02:50.541 rabbitmq> 2024-09-13 14:02:50.539283+00:00 [info] <0.558.0> Setting up a table for per-user connection counting on this node: tracked_connection_per_user -14:02:50.541 rabbitmq> 2024-09-13 14:02:50.539317+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel -14:02:50.541 rabbitmq> 2024-09-13 14:02:50.539349+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel_per_user -14:02:50.543 rabbitmq> 2024-09-13 14:02:50.539387+00:00 [info] <0.254.0> Running boot step networking_metadata_store defined by app rabbit -14:02:50.543 rabbitmq> 2024-09-13 14:02:50.539455+00:00 [info] <0.254.0> Running boot step feature_flags defined by app rabbit -14:02:50.544 rabbitmq> 2024-09-13 14:02:50.539622+00:00 [info] <0.254.0> Running boot step codec_correctness_check defined by app rabbit -14:02:50.544 rabbitmq> 2024-09-13 14:02:50.539691+00:00 [info] <0.254.0> Running boot step external_infrastructure defined by app rabbit -14:02:50.544 rabbitmq> 2024-09-13 14:02:50.539812+00:00 [info] <0.254.0> Running boot step rabbit_event defined by app rabbit -14:02:50.544 rabbitmq> 2024-09-13 14:02:50.540111+00:00 [info] <0.254.0> Running boot step rabbit_registry defined by app rabbit -14:02:50.544 rabbitmq> 2024-09-13 14:02:50.540237+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit -14:02:50.544 rabbitmq> 2024-09-13 14:02:50.540384+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit -14:02:50.544 rabbitmq> 2024-09-13 14:02:50.540580+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit -14:02:50.544 rabbitmq> 2024-09-13 14:02:50.540782+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_direct defined by app rabbit -14:02:50.544 rabbitmq> 2024-09-13 14:02:50.540848+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit -14:02:50.544 rabbitmq> 2024-09-13 14:02:50.540922+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_headers defined by app rabbit -14:02:50.545 rabbitmq> 2024-09-13 14:02:50.540965+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_topic defined by app rabbit -14:02:50.545 rabbitmq> 2024-09-13 14:02:50.541060+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit -14:02:50.545 rabbitmq> 2024-09-13 14:02:50.541189+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit -14:02:50.545 rabbitmq> 2024-09-13 14:02:50.541264+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit -14:02:50.545 rabbitmq> 2024-09-13 14:02:50.541302+00:00 [info] <0.254.0> Running boot step rabbit_priority_queue defined by app rabbit -14:02:50.546 rabbitmq> 2024-09-13 14:02:50.541337+00:00 [info] <0.254.0> Priority queues enabled, real BQ is rabbit_variable_queue -14:02:50.546 rabbitmq> 2024-09-13 14:02:50.543281+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_client_local defined by app rabbit -14:02:50.546 rabbitmq> 2024-09-13 14:02:50.543452+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit -14:02:50.546 rabbitmq> 2024-09-13 14:02:50.543542+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_random defined by app rabbit -14:02:50.546 rabbitmq> 2024-09-13 14:02:50.543735+00:00 [info] <0.254.0> Running boot step kernel_ready defined by app rabbit -14:02:50.546 rabbitmq> 2024-09-13 14:02:50.543763+00:00 [info] <0.254.0> Running boot step rabbit_sysmon_minder defined by app rabbit -14:02:50.546 rabbitmq> 2024-09-13 14:02:50.544027+00:00 [info] <0.254.0> Running boot step rabbit_epmd_monitor defined by app rabbit -14:02:50.550 rabbitmq> 2024-09-13 14:02:50.550137+00:00 [info] <0.566.0> epmd monitor knows us, inter-node communication (distribution) port: 25672 -14:02:50.550 rabbitmq> 2024-09-13 14:02:50.550271+00:00 [info] <0.254.0> Running boot step guid_generator defined by app rabbit -14:02:50.558 rabbitmq> 2024-09-13 14:02:50.558603+00:00 [info] <0.254.0> Running boot step rabbit_node_monitor defined by app rabbit -14:02:50.559 rabbitmq> 2024-09-13 14:02:50.558894+00:00 [info] <0.570.0> Starting rabbit_node_monitor (in ignore mode) -14:02:50.559 rabbitmq> 2024-09-13 14:02:50.559014+00:00 [info] <0.254.0> Running boot step delegate_sup defined by app rabbit -14:02:50.559 rabbitmq> 2024-09-13 14:02:50.559346+00:00 [info] <0.254.0> Running boot step rabbit_memory_monitor defined by app rabbit -14:02:50.559 rabbitmq> 2024-09-13 14:02:50.559457+00:00 [info] <0.254.0> Running boot step rabbit_fifo_dlx_sup defined by app rabbit -14:02:50.560 rabbitmq> 2024-09-13 14:02:50.559506+00:00 [info] <0.254.0> Running boot step core_initialized defined by app rabbit -14:02:50.560 rabbitmq> 2024-09-13 14:02:50.559527+00:00 [info] <0.254.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit -14:02:50.560 rabbitmq> 2024-09-13 14:02:50.559594+00:00 [info] <0.254.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit -14:02:50.560 rabbitmq> 2024-09-13 14:02:50.559624+00:00 [info] <0.254.0> Running boot step rabbit_definitions_hashing defined by app rabbit -14:02:50.560 rabbitmq> 2024-09-13 14:02:50.559775+00:00 [info] <0.254.0> Running boot step rabbit_exchange_parameters defined by app rabbit -14:02:50.598 rabbitmq> 2024-09-13 14:02:50.597846+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit -14:02:50.598 rabbitmq> 2024-09-13 14:02:50.598365+00:00 [info] <0.254.0> Running boot step rabbit_policies defined by app rabbit -14:02:50.598 rabbitmq> 2024-09-13 14:02:50.598686+00:00 [info] <0.254.0> Running boot step rabbit_policy defined by app rabbit -14:02:50.599 rabbitmq> 2024-09-13 14:02:50.598728+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_validator defined by app rabbit -14:02:50.599 rabbitmq> 2024-09-13 14:02:50.598962+00:00 [info] <0.254.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit -14:02:50.599 rabbitmq> 2024-09-13 14:02:50.599090+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue defined by app rabbit -14:02:50.599 rabbitmq> 2024-09-13 14:02:50.599235+00:00 [info] <0.254.0> Running boot step rabbit_stream_coordinator defined by app rabbit -14:02:50.600 rabbitmq> 2024-09-13 14:02:50.600322+00:00 [info] <0.254.0> Running boot step rabbit_vhost_limit defined by app rabbit -14:02:50.600 rabbitmq> 2024-09-13 14:02:50.600413+00:00 [info] <0.254.0> Running boot step rabbit_federation_parameters defined by app rabbitmq_federation -14:02:50.601 rabbitmq> 2024-09-13 14:02:50.600517+00:00 [info] <0.254.0> Running boot step rabbit_federation_supervisor defined by app rabbitmq_federation -14:02:50.609 rabbitmq> 2024-09-13 14:02:50.609690+00:00 [info] <0.254.0> Running boot step rabbit_federation_queue defined by app rabbitmq_federation -14:02:50.610 rabbitmq> 2024-09-13 14:02:50.609844+00:00 [info] <0.254.0> Running boot step rabbit_federation_upstream_exchange defined by app rabbitmq_federation -14:02:50.610 rabbitmq> 2024-09-13 14:02:50.609994+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management -14:02:50.610 rabbitmq> 2024-09-13 14:02:50.610112+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent -14:02:50.610 rabbitmq> 2024-09-13 14:02:50.610167+00:00 [info] <0.254.0> Management plugin: using rates mode 'basic' -14:02:50.610 rabbitmq> 2024-09-13 14:02:50.610328+00:00 [info] <0.254.0> Running boot step recovery defined by app rabbit -14:02:50.624 rabbitmq> 2024-09-13 14:02:50.623565+00:00 [info] <0.254.0> Running boot step empty_db_check defined by app rabbit -14:02:50.624 rabbitmq> 2024-09-13 14:02:50.623671+00:00 [info] <0.254.0> Will seed default virtual host and user... -14:02:50.624 rabbitmq> 2024-09-13 14:02:50.623790+00:00 [info] <0.254.0> Adding vhost '/' (description: 'Default virtual host', tags: []) -14:02:50.689 rabbitmq> 2024-09-13 14:02:50.688821+00:00 [info] <0.630.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists -14:02:50.694 rabbitmq> 2024-09-13 14:02:50.693675+00:00 [info] <0.630.0> Setting segment_entry_count for vhost '/' with 0 queues to '2048' -14:02:50.733 rabbitmq> 2024-09-13 14:02:50.732192+00:00 [info] <0.630.0> Starting message stores for vhost '/' -14:02:50.733 rabbitmq> 2024-09-13 14:02:50.732561+00:00 [info] <0.639.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index -14:02:50.736 rabbitmq> 2024-09-13 14:02:50.736102+00:00 [info] <0.630.0> Started message store of type transient for vhost '/' -14:02:50.736 rabbitmq> 2024-09-13 14:02:50.736489+00:00 [info] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index -14:02:50.738 rabbitmq> 2024-09-13 14:02:50.738285+00:00 [warning] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch -14:02:50.740 rabbitmq> 2024-09-13 14:02:50.740235+00:00 [info] <0.630.0> Started message store of type persistent for vhost '/' -14:02:50.741 rabbitmq> 2024-09-13 14:02:50.740439+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_classic_queue took 45ms -14:02:50.741 rabbitmq> 2024-09-13 14:02:50.740499+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_quorum_queue took 0ms -14:02:50.741 rabbitmq> 2024-09-13 14:02:50.740558+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_stream_queue took 0ms -14:02:50.749 rabbitmq> 2024-09-13 14:02:50.749033+00:00 [info] <0.254.0> Created user 'guest' -14:02:50.757 rabbitmq> 2024-09-13 14:02:50.757105+00:00 [info] <0.254.0> Successfully set user tags for user 'guest' to [administrator] -14:02:50.764 rabbitmq> 2024-09-13 14:02:50.764226+00:00 [info] <0.254.0> Successfully set permissions for user 'guest' in virtual host '/' to '.*', '.*', '.*' -14:02:50.764 rabbitmq> 2024-09-13 14:02:50.764286+00:00 [info] <0.254.0> Running boot step rabbit_observer_cli defined by app rabbit -14:02:50.764 rabbitmq> 2024-09-13 14:02:50.764381+00:00 [info] <0.254.0> Running boot step rabbit_looking_glass defined by app rabbit -14:02:50.765 rabbitmq> 2024-09-13 14:02:50.764410+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics_gc defined by app rabbit -14:02:50.765 rabbitmq> 2024-09-13 14:02:50.764551+00:00 [info] <0.254.0> Running boot step background_gc defined by app rabbit -14:02:50.765 rabbitmq> 2024-09-13 14:02:50.764658+00:00 [info] <0.254.0> Running boot step routing_ready defined by app rabbit -14:02:50.765 rabbitmq> 2024-09-13 14:02:50.764683+00:00 [info] <0.254.0> Running boot step pre_flight defined by app rabbit -14:02:50.765 rabbitmq> 2024-09-13 14:02:50.764720+00:00 [info] <0.254.0> Running boot step notify_cluster defined by app rabbit -14:02:50.765 rabbitmq> 2024-09-13 14:02:50.764779+00:00 [info] <0.254.0> Running boot step networking defined by app rabbit -14:02:50.765 rabbitmq> 2024-09-13 14:02:50.764865+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue_periodic_membership_reconciliation defined by app rabbit -14:02:50.766 rabbitmq> 2024-09-13 14:02:50.765024+00:00 [info] <0.254.0> Running boot step definition_import_worker_pool defined by app rabbit -14:02:50.766 rabbitmq> 2024-09-13 14:02:50.765241+00:00 [info] <0.315.0> Starting worker pool 'definition_import_pool' with 4 processes in it -14:02:50.766 rabbitmq> 2024-09-13 14:02:50.765594+00:00 [info] <0.254.0> Running boot step cluster_name defined by app rabbit -14:02:50.767 rabbitmq> 2024-09-13 14:02:50.765688+00:00 [info] <0.254.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-MXjc9I3DROEAFxF2abAmzA' -14:02:50.774 rabbitmq> 2024-09-13 14:02:50.773723+00:00 [info] <0.254.0> Running boot step virtual_host_reconciliation defined by app rabbit -14:02:50.775 rabbitmq> 2024-09-13 14:02:50.774166+00:00 [info] <0.254.0> Running boot step direct_client defined by app rabbit -14:02:50.775 rabbitmq> 2024-09-13 14:02:50.774268+00:00 [info] <0.254.0> Running boot step rabbit_federation_exchange defined by app rabbitmq_federation -14:02:50.775 rabbitmq> 2024-09-13 14:02:50.774475+00:00 [info] <0.254.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management -14:02:50.775 rabbitmq> 2024-09-13 14:02:50.775111+00:00 [info] <0.680.0> Resetting node maintenance status -14:02:50.949 rabbitmq> 2024-09-13 14:02:50.948624+00:00 [warning] <0.709.0> Deprecated features: `management_metrics_collection`: Feature `management_metrics_collection` is deprecated. -14:02:50.949 rabbitmq> 2024-09-13 14:02:50.948624+00:00 [warning] <0.709.0> By default, this feature can still be used for now. -14:02:50.949 rabbitmq> 2024-09-13 14:02:50.948624+00:00 [warning] <0.709.0> Its use will not be permitted by default in a future minor RabbitMQ version and the feature will be removed from a future major RabbitMQ version; actual versions to be determined. -14:02:50.949 rabbitmq> 2024-09-13 14:02:50.948624+00:00 [warning] <0.709.0> To continue using this feature when it is not permitted by default, set the following parameter in your configuration: -14:02:50.949 rabbitmq> 2024-09-13 14:02:50.948624+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = true" -14:02:50.949 rabbitmq> 2024-09-13 14:02:50.948624+00:00 [warning] <0.709.0> To test RabbitMQ as if the feature was removed, set this in your configuration: -14:02:50.949 rabbitmq> 2024-09-13 14:02:50.948624+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = false" -14:02:54.080 rabbitmq> 2024-09-13 14:02:54.080061+00:00 [info] <0.746.0> Management plugin: HTTP (non-TLS) listener started on port 15672 -14:02:54.080 rabbitmq> 2024-09-13 14:02:54.080200+00:00 [info] <0.776.0> Statistics database started. -14:02:54.081 rabbitmq> 2024-09-13 14:02:54.080279+00:00 [info] <0.775.0> Starting worker pool 'management_worker_pool' with 3 processes in it -14:02:54.088 rabbitmq> 2024-09-13 14:02:54.087725+00:00 [info] <0.794.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692 -14:02:54.088 rabbitmq> 2024-09-13 14:02:54.087868+00:00 [info] <0.680.0> Ready to start client connection listeners -14:02:54.089 rabbitmq> 2024-09-13 14:02:54.089519+00:00 [info] <0.838.0> started TCP listener on [::]:5672 -14:02:54.185 rabbitmq> 2024-09-13 14:02:54.185597+00:00 [info] <0.680.0> Server startup complete; 5 plugins started. -[INFO] DOCKER> Pattern 'Server startup complete' matched for container d5371c7ce138 -14:02:54.185 rabbitmq> 2024-09-13 14:02:54.185597+00:00 [info] <0.680.0> * rabbitmq_prometheus -14:02:54.185 rabbitmq> 2024-09-13 14:02:54.185597+00:00 [info] <0.680.0> * rabbitmq_federation -14:02:54.185 rabbitmq> 2024-09-13 14:02:54.185597+00:00 [info] <0.680.0> * rabbitmq_management -14:02:54.185 rabbitmq> 2024-09-13 14:02:54.185597+00:00 [info] <0.680.0> * rabbitmq_management_agent -14:02:54.186 rabbitmq> 2024-09-13 14:02:54.185597+00:00 [info] <0.680.0> * rabbitmq_web_dispatch -14:02:54.186 rabbitmq> completed with 5 plugins. -14:02:54.197 rabbitmq> 2024-09-13 14:02:54.196794+00:00 [info] <0.9.0> Time to start RabbitMQ: 8542 ms -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waited on url http://localhost:15672 and on log out 'Server startup complete' 9069 ms -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Start container 0a2fc7975506 -14:02:55.724 localstack> -14:02:55.724 localstack> LocalStack version: 3.7.3.dev18 -14:02:55.724 localstack> LocalStack build date: 2024-09-13 -14:02:55.724 localstack> LocalStack build git hash: 55e2d9fd6 -14:02:55.724 localstack> -14:02:56.209 localstack> Ready. -[INFO] DOCKER> Pattern 'Ready.' matched for container 0a2fc7975506 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Waited on log out 'Ready.' 1510 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container af2d4fde965e -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Start container 8279c668b480 -14:02:57.564 worker-languagedetection> [2024-09-13 14:02:57.563Z #007.??? INFO - - ] startup.sh: Running startup scripts... -14:02:57.566 worker-languagedetection> [2024-09-13 14:02:57.566Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -14:02:57.575 worker-languagedetection> [2024-09-13 14:02:57.574Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -14:02:57.578 worker-languagedetection> [2024-09-13 14:02:57.576Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waiting on url http://localhost:8080/health-check?type=READY with method HEAD for status 200..399. -14:02:57.588 worker-languagedetection> [2024-09-13 14:02:57.587Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -14:02:57.590 worker-languagedetection> [2024-09-13 14:02:57.590Z #007.??? INFO - - ] startup.sh: Startup scripts completed -14:02:57.592 worker-languagedetection> [2024-09-13 14:02:57.591Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -14:02:57.905 worker-languagedetection> 14:02:57,734 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -14:02:57.905 worker-languagedetection> 14:02:57,737 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -14:02:57.905 worker-languagedetection> 14:02:57,737 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -14:02:57.905 worker-languagedetection> 14:02:57,738 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -14:02:57.905 worker-languagedetection> 14:02:57,744 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -14:02:57.905 worker-languagedetection> 14:02:57,745 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -14:02:57.905 worker-languagedetection> 14:02:57,754 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 7 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -14:02:57.905 worker-languagedetection> 14:02:57,754 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -14:02:57.905 worker-languagedetection> 14:02:57,755 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -14:02:57.905 worker-languagedetection> 14:02:57,755 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -14:02:57.905 worker-languagedetection> 14:02:57,759 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -14:02:57.905 worker-languagedetection> 14:02:57,764 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -14:02:57.905 worker-languagedetection> 14:02:57,804 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -14:02:57.905 worker-languagedetection> 14:02:57,804 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -14:02:57.905 worker-languagedetection> 14:02:57,804 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -14:02:57.905 worker-languagedetection> 14:02:57,850 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -14:02:57.905 worker-languagedetection> 14:02:57,850 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -14:02:57.905 worker-languagedetection> 14:02:57,850 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -14:02:57.905 worker-languagedetection> 14:02:57,853 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -14:02:57.905 worker-languagedetection> 14:02:57,853 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -14:02:57.905 worker-languagedetection> 14:02:57,861 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -14:02:57.905 worker-languagedetection> 14:02:57,863 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -14:02:57.905 worker-languagedetection> 14:02:57,892 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -14:02:57.905 worker-languagedetection> 14:02:57,895 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -14:02:57.905 worker-languagedetection> 14:02:57,895 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -14:02:57.905 worker-languagedetection> 14:02:57,896 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -14:02:57.905 worker-languagedetection> 14:02:57,896 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -14:02:57.905 worker-languagedetection> 14:02:57,897 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -14:02:57.905 worker-languagedetection> 14:02:57,897 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -14:02:57.905 worker-languagedetection> 14:02:57,897 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -14:02:57.905 worker-languagedetection> 14:02:57,897 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 142 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY -14:02:57.905 worker-languagedetection> -14:02:58.113 worker-languagedetection> [2024-09-13 14:02:58.093Z #6b5.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -14:02:58.896 worker-languagedetection> [2024-09-13 14:02:58.896Z #6b5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -14:02:58.897 worker-languagedetection> [2024-09-13 14:02:58.897Z #6b5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -14:02:58.898 worker-languagedetection> [2024-09-13 14:02:58.898Z #6b5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -14:02:58.910 worker-languagedetection> [2024-09-13 14:02:58.909Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -14:02:58.912 worker-languagedetection> [2024-09-13 14:02:58.912Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -14:02:58.913 worker-languagedetection> [2024-09-13 14:02:58.913Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -14:02:58.915 worker-languagedetection> [2024-09-13 14:02:58.914Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -14:02:58.923 worker-languagedetection> [2024-09-13 14:02:58.922Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -14:02:58.924 worker-languagedetection> [2024-09-13 14:02:58.924Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -14:02:58.929 worker-languagedetection> [2024-09-13 14:02:58.925Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -14:02:58.983 worker-languagedetection> [2024-09-13 14:02:58.982Z #6b5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider -14:02:59.033 worker-languagedetection> [2024-09-13 14:02:59.029Z #6b5.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} -14:02:59.142 worker-languagedetection> [2024-09-13 14:02:59.142Z #6b5.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@65c33b92{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -14:02:59.142 worker-languagedetection> [2024-09-13 14:02:59.142Z #6b5.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@7903d448{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -14:02:59.145 worker-languagedetection> [2024-09-13 14:02:59.145Z #6b5.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS -14:02:59.156 worker-languagedetection> [2024-09-13 14:02:59.156Z #6b5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. -14:02:59.175 worker-languagedetection> [2024-09-13 14:02:59.174Z #6b5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE -14:02:59.195 worker-languagedetection> [2024-09-13 14:02:59.195Z #6b5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY -14:02:59.196 worker-languagedetection> [2024-09-13 14:02:59.196Z #6b5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY -14:02:59.197 worker-languagedetection> [2024-09-13 14:02:59.197Z #6b5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY -14:02:59.198 worker-languagedetection> [2024-09-13 14:02:59.198Z #6b5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE -14:02:59.199 worker-languagedetection> [2024-09-13 14:02:59.199Z #6b5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY -14:02:59.201 worker-languagedetection> [2024-09-13 14:02:59.201Z #6b5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE -14:02:59.205 worker-languagedetection> -14:02:59.532 worker-languagedetection> [2024-09-13 14:02:59.531Z #6b5.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} -14:02:59.533 worker-languagedetection> [2024-09-13 14:02:59.533Z #6b5.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@58f2466c{/,null,AVAILABLE} -14:02:59.537 worker-languagedetection> [2024-09-13 14:02:59.536Z #6b5.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} -14:02:59.537 worker-languagedetection> [2024-09-13 14:02:59.537Z #6b5.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@1376883{/,null,AVAILABLE} -14:02:59.544 worker-languagedetection> [2024-09-13 14:02:59.543Z #6b5.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@65c33b92{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -14:02:59.545 worker-languagedetection> [2024-09-13 14:02:59.545Z #6b5.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@7903d448{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -14:02:59.547 worker-languagedetection> [2024-09-13 14:02:59.547Z #6b5.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@43af351a{STARTING}[11.0.23,sto=30000] @1951ms -14:02:59.663 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:02:59 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 13 -14:03:00.159 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:00 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:00.666 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:00 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:03:01.174 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:01 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:03:01.683 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:01 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:02.196 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:02 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 -14:03:02.701 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:02 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:03.207 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:03 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:03.717 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:03 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:04.231 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:04 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 -14:03:04.735 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:04 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:05.240 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:05 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:05.745 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:05 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:03:06.250 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:06 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:06.755 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:06 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:07.267 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:07 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:03:07.771 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:07 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:08.284 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:08 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:03:08.787 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:08 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:03:09.294 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:09 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:09.804 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:09 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:10.317 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:10 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:03:10.821 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:10 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:11.330 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:11 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:11.835 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:11 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:03:12.341 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:12 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:12.846 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:12 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:13.358 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:13 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:03:13.866 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:13 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:03:14.200 worker-languagedetection> [2024-09-13 14:03:14.199Z #6b5.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE -14:03:14.220 rabbitmq> 2024-09-13 14:03:14.220645+00:00 [info] <0.845.0> accepting AMQP connection <0.845.0> (172.17.0.5:49430 -> 172.17.0.3:5672) -14:03:14.240 rabbitmq> 2024-09-13 14:03:14.240033+00:00 [info] <0.845.0> connection <0.845.0> (172.17.0.5:49430 -> 172.17.0.3:5672): user 'guest' authenticated and granted access to vhost '/' -14:03:14.248 worker-languagedetection> [2024-09-13 14:03:14.248Z #6b5.034 WARN - - ] c.h.c.util.rabbitmq.RabbitUtil: Priority is not supported with quorum queues -14:03:14.312 rabbitmq> 2024-09-13 14:03:14.311871+00:00 [notice] <0.866.0> queue 'LanguageDetectionWorker-input-1' in vhost '/': candidate -> leader in term: 1 machine version: 3 -14:03:14.312 rabbitmq> 2024-09-13 14:03:14.312273+00:00 [info] <0.860.0> ra: started cluster %2F_LanguageDetectionWorker-input-1 with 1 servers -14:03:14.312 rabbitmq> 2024-09-13 14:03:14.312273+00:00 [info] <0.860.0> 0 servers failed to start: [] -14:03:14.312 rabbitmq> 2024-09-13 14:03:14.312273+00:00 [info] <0.860.0> Leader: {'%2F_LanguageDetectionWorker-input-1',rabbit@d5371c7ce138} -14:03:14.335 worker-languagedetection> [2024-09-13 14:03:14.335Z #6b5.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE -14:03:14.336 worker-languagedetection> [2024-09-13 14:03:14.335Z #6b5.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY -14:03:14.336 worker-languagedetection> [2024-09-13 14:03:14.335Z #6b5.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE -14:03:14.338 worker-languagedetection> [2024-09-13 14:03:14.338Z #6b5.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY -14:03:14.338 worker-languagedetection> [2024-09-13 14:03:14.338Z #6b5.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY -14:03:14.338 worker-languagedetection> [2024-09-13 14:03:14.338Z #6b5.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waited on url http://localhost:8080/health-check?type=READY 16791 ms -14:03:14.371 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:03:14 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Start container 441de5dce462 -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. -14:03:14.755 sqs-worker-languagedetection> [2024-09-13 14:03:14.754Z #007.??? INFO - - ] startup.sh: Running startup scripts... -14:03:14.758 sqs-worker-languagedetection> [2024-09-13 14:03:14.757Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -14:03:14.767 sqs-worker-languagedetection> [2024-09-13 14:03:14.765Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -14:03:14.769 sqs-worker-languagedetection> [2024-09-13 14:03:14.768Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -14:03:14.778 sqs-worker-languagedetection> [2024-09-13 14:03:14.776Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -14:03:14.784 sqs-worker-languagedetection> [2024-09-13 14:03:14.783Z #007.??? INFO - - ] startup.sh: Startup scripts completed -14:03:14.786 sqs-worker-languagedetection> [2024-09-13 14:03:14.785Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -14:03:15.095 sqs-worker-languagedetection> 14:03:14,928 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -14:03:15.095 sqs-worker-languagedetection> 14:03:14,929 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -14:03:15.095 sqs-worker-languagedetection> 14:03:14,929 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -14:03:15.095 sqs-worker-languagedetection> 14:03:14,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -14:03:15.095 sqs-worker-languagedetection> 14:03:14,935 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -14:03:15.095 sqs-worker-languagedetection> 14:03:14,936 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -14:03:15.095 sqs-worker-languagedetection> 14:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -14:03:15.095 sqs-worker-languagedetection> 14:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -14:03:15.095 sqs-worker-languagedetection> 14:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -14:03:15.095 sqs-worker-languagedetection> 14:03:14,946 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -14:03:15.095 sqs-worker-languagedetection> 14:03:14,949 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -14:03:15.095 sqs-worker-languagedetection> 14:03:14,954 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -14:03:15.095 sqs-worker-languagedetection> 14:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -14:03:15.095 sqs-worker-languagedetection> 14:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -14:03:15.095 sqs-worker-languagedetection> 14:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -14:03:15.095 sqs-worker-languagedetection> 14:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -14:03:15.095 sqs-worker-languagedetection> 14:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -14:03:15.095 sqs-worker-languagedetection> 14:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -14:03:15.095 sqs-worker-languagedetection> 14:03:15,046 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -14:03:15.095 sqs-worker-languagedetection> 14:03:15,046 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -14:03:15.095 sqs-worker-languagedetection> 14:03:15,054 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -14:03:15.095 sqs-worker-languagedetection> 14:03:15,056 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -14:03:15.095 sqs-worker-languagedetection> 14:03:15,083 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -14:03:15.095 sqs-worker-languagedetection> 14:03:15,086 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -14:03:15.095 sqs-worker-languagedetection> 14:03:15,086 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -14:03:15.095 sqs-worker-languagedetection> 14:03:15,086 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -14:03:15.095 sqs-worker-languagedetection> 14:03:15,087 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -14:03:15.095 sqs-worker-languagedetection> 14:03:15,087 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -14:03:15.095 sqs-worker-languagedetection> 14:03:15,087 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -14:03:15.095 sqs-worker-languagedetection> 14:03:15,087 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -14:03:15.095 sqs-worker-languagedetection> 14:03:15,087 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 142 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY -14:03:15.095 sqs-worker-languagedetection> -14:03:15.289 sqs-worker-languagedetection> [2024-09-13 14:03:15.270Z #3c5.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -14:03:15.945 sqs-worker-languagedetection> [2024-09-13 14:03:15.945Z #3c5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -14:03:15.946 sqs-worker-languagedetection> [2024-09-13 14:03:15.946Z #3c5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -14:03:15.948 sqs-worker-languagedetection> [2024-09-13 14:03:15.946Z #3c5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -14:03:15.958 sqs-worker-languagedetection> [2024-09-13 14:03:15.958Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -14:03:15.960 sqs-worker-languagedetection> [2024-09-13 14:03:15.960Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -14:03:15.961 sqs-worker-languagedetection> [2024-09-13 14:03:15.961Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -14:03:15.963 sqs-worker-languagedetection> [2024-09-13 14:03:15.962Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -14:03:15.970 sqs-worker-languagedetection> [2024-09-13 14:03:15.969Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -14:03:15.971 sqs-worker-languagedetection> [2024-09-13 14:03:15.970Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -14:03:15.972 sqs-worker-languagedetection> [2024-09-13 14:03:15.972Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -14:03:15.975 sqs-worker-languagedetection> com.hpe.caf.api.worker.DataStoreException: Cannot create data store -14:03:15.976 sqs-worker-languagedetection> at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) -14:03:15.976 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) -14:03:15.976 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) -14:03:15.976 sqs-worker-languagedetection> at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) -14:03:15.976 sqs-worker-languagedetection> at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) -14:03:15.976 sqs-worker-languagedetection> at io.dropwizard.core.cli.Cli.run(Cli.java:78) -14:03:15.976 sqs-worker-languagedetection> at io.dropwizard.core.Application.run(Application.java:94) -14:03:15.976 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) -14:03:15.976 sqs-worker-languagedetection> Caused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration -14:03:15.976 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) -14:03:15.977 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) -14:03:15.977 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) -14:03:15.977 sqs-worker-languagedetection> at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) -14:03:15.977 sqs-worker-languagedetection> ... 7 more -[2024-09-13 14:03:14.754Z #007.??? INFO - - ] startup.sh: Running startup scripts... -[2024-09-13 14:03:14.757Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -[2024-09-13 14:03:14.765Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -[2024-09-13 14:03:14.768Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -[2024-09-13 14:03:14.776Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -[2024-09-13 14:03:14.783Z #007.??? INFO - - ] startup.sh: Startup scripts completed -[2024-09-13 14:03:14.785Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -14:03:14,928 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -14:03:14,929 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -14:03:14,929 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -14:03:14,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -14:03:14,935 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -14:03:14,936 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -14:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -14:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -14:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -14:03:14,946 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -14:03:14,949 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -14:03:14,954 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -14:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -14:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -14:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -14:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -14:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -14:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -14:03:15,046 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -14:03:15,046 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -14:03:15,054 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -14:03:15,056 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -14:03:15,083 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -14:03:15,086 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -14:03:15,086 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -14:03:15,086 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -14:03:15,087 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -14:03:15,087 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -14:03:15,087 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -14:03:15,087 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -14:03:15,087 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 142 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -[2024-09-13 14:03:15.270Z #3c5.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -[2024-09-13 14:03:15.945Z #3c5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -[2024-09-13 14:03:15.946Z #3c5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -[2024-09-13 14:03:15.946Z #3c5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -[2024-09-13 14:03:15.958Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -[2024-09-13 14:03:15.960Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -[2024-09-13 14:03:15.961Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -[2024-09-13 14:03:15.962Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -[2024-09-13 14:03:15.969Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -[2024-09-13 14:03:15.970Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -[2024-09-13 14:03:15.972Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -com.hpe.caf.api.worker.DataStoreException: Cannot create data store - at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) - at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) - at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) - at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) - at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) - at io.dropwizard.core.cli.Cli.run(Cli.java:78) - at io.dropwizard.core.Application.run(Application.java:94) - at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) -Caused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration - at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) - at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) - at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) - at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) - ... 7 more -441de5[2024-09-13 14:03:14.754Z #007.??? INFO - - ] startup.sh: Running startup scripts... -441de5[2024-09-13 14:03:14.757Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -441de5[2024-09-13 14:03:14.765Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -441de5[2024-09-13 14:03:14.768Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -441de5[2024-09-13 14:03:14.776Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -441de5[2024-09-13 14:03:14.783Z #007.??? INFO - - ] startup.sh: Startup scripts completed -441de5[2024-09-13 14:03:14.785Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -441de514:03:14,928 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -441de514:03:14,929 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -441de514:03:14,929 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -441de514:03:14,930 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -441de514:03:14,935 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -441de514:03:14,936 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -441de514:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -441de514:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -441de514:03:14,945 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -441de514:03:14,946 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -441de514:03:14,949 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -441de514:03:14,954 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -441de514:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -441de514:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -441de514:03:14,998 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -441de514:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -441de514:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -441de514:03:15,043 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -441de514:03:15,046 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -441de514:03:15,046 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -441de514:03:15,054 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -441de514:03:15,056 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -441de514:03:15,083 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -441de514:03:15,086 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -441de514:03:15,086 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -441de514:03:15,086 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -441de514:03:15,087 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -441de514:03:15,087 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -441de514:03:15,087 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -441de514:03:15,087 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -441de514:03:15,087 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 142 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY -441de5 -441de5[2024-09-13 14:03:15.270Z #3c5.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -441de5[2024-09-13 14:03:15.945Z #3c5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -441de5[2024-09-13 14:03:15.946Z #3c5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -441de5[2024-09-13 14:03:15.946Z #3c5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -441de5[2024-09-13 14:03:15.958Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -441de5[2024-09-13 14:03:15.960Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -441de5[2024-09-13 14:03:15.961Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -441de5[2024-09-13 14:03:15.962Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -441de5[2024-09-13 14:03:15.969Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -441de5[2024-09-13 14:03:15.970Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -441de5[2024-09-13 14:03:15.972Z #3c5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -441de5com.hpe.caf.api.worker.DataStoreException: Cannot create data store -441de5 at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) -441de5 at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) -441de5 at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) -441de5 at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) -441de5 at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) -441de5 at io.dropwizard.core.cli.Cli.run(Cli.java:78) -441de5 at io.dropwizard.core.Application.run(Application.java:94) -441de5 at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) -441de5Caused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration -441de5 at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) -441de5 at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) -441de5 at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) -441de5 at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) -441de5 ... 7 more -[ERROR] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 1800 ms while waiting on url http://localhost:8082/health-check?type=READY -[ERROR] DOCKER> Error occurred during container startup, shutting down... -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Stop and removed container 441de5dce462 after 0 ms -14:03:17.120 worker-languagedetection> [2024-09-13 14:03:17.120Z #6b5.033 INFO - - ] o.eclipse.jetty.server.Server: Stopped Server@43af351a{STOPPING}[11.0.23,sto=30000] -14:03:17.120 worker-languagedetection> [2024-09-13 14:03:17.120Z #6b5.033 INFO - - ] o.eclipse.jetty.server.Server: Shutdown Server@43af351a{STOPPING}[11.0.23,sto=30000] -14:03:17.124 worker-languagedetection> [2024-09-13 14:03:17.123Z #6b5.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped application@65c33b92{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -14:03:17.125 worker-languagedetection> [2024-09-13 14:03:17.124Z #6b5.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped admin@7903d448{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -14:03:17.126 worker-languagedetection> [2024-09-13 14:03:17.126Z #6b5.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@1376883{/,null,STOPPED} -14:03:17.132 worker-languagedetection> [2024-09-13 14:03:17.132Z #6b5.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@58f2466c{/,null,STOPPED} -14:03:17.135 worker-languagedetection> [2024-09-13 14:03:17.135Z #6b5.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stop requested, allowing in-progress tasks to complete. -14:03:17.149 rabbitmq> 2024-09-13 14:03:17.149450+00:00 [info] <0.845.0> closing AMQP connection <0.845.0> (172.17.0.5:49430 -> 172.17.0.3:5672, vhost: '/', user: 'guest') -14:03:17.150 worker-languagedetection> [2024-09-13 14:03:17.149Z #6b5.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stopped. -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Stop and removed container 8279c668b480 after 0 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container af2d4fde965e after 0 ms -14:03:18.314 localstack> Localstack runtime received signal 15 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Stop and removed container 0a2fc7975506 after 0 ms -14:03:21.539 rabbitmq> 2024-09-13 14:03:21.539108+00:00 [notice] <0.64.0> SIGTERM received - shutting down -14:03:21.539 rabbitmq> 2024-09-13 14:03:21.539108+00:00 [notice] <0.64.0> -14:03:21.541 rabbitmq> 2024-09-13 14:03:21.540873+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_prometheus_tls -14:03:21.546 rabbitmq> 2024-09-13 14:03:21.545977+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_management_tls -14:03:21.553 rabbitmq> 2024-09-13 14:03:21.552648+00:00 [info] <0.838.0> stopped TCP listener on [::]:5672 -14:03:21.554 rabbitmq> 2024-09-13 14:03:21.554358+00:00 [info] <0.630.0> Virtual host '/' is stopping -14:03:21.554 rabbitmq> 2024-09-13 14:03:21.554472+00:00 [info] <0.879.0> Closing all connections in vhost '/' on node 'rabbit@d5371c7ce138' because the vhost is stopping -14:03:21.555 rabbitmq> 2024-09-13 14:03:21.554475+00:00 [info] <0.643.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' -14:03:21.566 rabbitmq> 2024-09-13 14:03:21.566007+00:00 [info] <0.643.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' is stopped -14:03:21.566 rabbitmq> 2024-09-13 14:03:21.566193+00:00 [info] <0.639.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' -14:03:21.575 rabbitmq> 2024-09-13 14:03:21.575338+00:00 [info] <0.639.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@d5371c7ce138/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' is stopped -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Stop and removed container d5371c7ce138 after 0 ms -14:03:23.748 webdav> Caught SIGTERM signal! -14:03:23.748 webdav> ++ _term -14:03:23.748 webdav> ++ echo 'Caught SIGTERM signal!' -14:03:23.748 webdav> ++ kill -TERM '' -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container a08457f6b776 after 0 ms -[ERROR] DOCKER> I/O Error [[dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 1800 ms while waiting on url http://localhost:8082/health-check?type=READY] -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD FAILURE -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 03:35 min -[INFO] Finished at: 2024-09-13T15:03:24+01:00 -[INFO] ------------------------------------------------------------------------ -[ERROR] Failed to execute goal io.fabric8:docker-maven-plugin:0.43.4:start (start) on project worker-languagedetection-container: I/O Error: [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 1800 ms while waiting on url http://localhost:8082/health-check?type=READY -> [Help 1] -[ERROR] -[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. -[ERROR] Re-run Maven using the -X switch to enable full debug logging. -[ERROR] -[ERROR] For more information about the errors and possible solutions, please read the following articles: -[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException -[INFO] Scanning for projects... -[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] -[INFO] Inspecting build with total of 1 modules... -[INFO] Installing Nexus Staging features: -[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin -[INFO] -[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- -[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT -[INFO] from pom.xml -[INFO] --------------------------------[ pom ]--------------------------------- -[INFO] -[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... -[INFO] Scanning for projects... -[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] -[INFO] Inspecting build with total of 1 modules... -[INFO] Installing Nexus Staging features: -[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin -[INFO] -[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- -[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT -[INFO] from pom.xml -[INFO] --------------------------------[ pom ]--------------------------------- -[INFO] -[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] -[INFO] -[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- -[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target -[INFO] -[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- -[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed -[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed -[INFO] -[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- -[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true -[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container -[INFO] Git info extracted in 390ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' -[INFO] -[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- -[INFO] Using plugin classloader, includes GMavenPlus and project classpath. -[INFO] Using Groovy 3.0.19 to perform execute. -[INFO] -[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- -[INFO] Updating license headers... -[INFO] -[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- -[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar -[INFO] -[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- -[INFO] Copying 2 resources from src/main/config to target/config-files -[INFO] -[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- -[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox -[INFO] DOCKER> -[INFO] DOCKER> ---> 6fd955f66c23 -[INFO] DOCKER> Step 2/4 : COPY maven /config/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> a2fc7b236f6a -[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 812e68848b67 -[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 4a9eb07106d2 -[INFO] DOCKER> Successfully built 4a9eb07106d2 -[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:4a9eb -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/sqs-worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/sqs-worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Created docker-build.tar in 1 minute and 16 seconds -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 -[INFO] DOCKER> -[INFO] DOCKER> ---> 0f51baaf46f5 -[INFO] DOCKER> Step 2/4 : COPY maven /maven/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 91e7f56ef8cf -[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 002fc83963fa -[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 2adee4e4f048 -[INFO] DOCKER> Successfully built 2adee4e4f048 -[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Built image sha256:2adee -[INFO] -[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- -[INFO] Changes detected - recompiling the module! :source -[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes -[INFO] -[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- -[INFO] -[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- -[INFO] Not executing Javadoc as the project is not a Java classpath-capable package -[INFO] -[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container c508cf0a571b -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. -14:16:50.419 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf -14:16:50.434 webdav> + getent passwd 33 -14:16:50.436 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin -14:16:50.437 webdav> + useradd -r webdav -u 33 -g 33 -14:16:50.469 webdav> useradd: UID 33 is not unique -14:16:50.471 webdav> + mkdir -p /srv/common/webdav -14:16:50.473 webdav> + chown 33 /srv/common/webdav -14:16:50.475 webdav> + trap _term SIGTERM -14:16:50.475 webdav> + pid=12 -14:16:50.475 webdav> + wait 12 -14:16:50.475 webdav> + /usr/sbin/apache2 -D FOREGROUND -14:16:50.536 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -14:16:50.540 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -14:16:50.541 webdav> [Fri Sep 13 14:16:50.541431 2024] [mpm_event:notice] [pid 12:tid 140019793577856] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations -14:16:50.541 webdav> [Fri Sep 13 14:16:50.541509 2024] [core:notice] [pid 12:tid 140019793577856] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' -14:16:50.609 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:14:16:50 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 187 ms -[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Start container 55cc951e87ea -14:16:52.623 localstack> -14:16:52.623 localstack> LocalStack version: 3.7.3.dev18 -14:16:52.623 localstack> LocalStack build date: 2024-09-13 -14:16:52.623 localstack> LocalStack build git hash: 55e2d9fd6 -14:16:52.623 localstack> -14:16:54.387 localstack> Ready. -[INFO] DOCKER> Pattern 'Ready.' matched for container 55cc951e87ea -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Waited on log out 'Ready.' 3528 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container 7046f389076d -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Start container fbad9ac5cf83 -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. -14:16:55.788 sqs-worker-languagedetection> [2024-09-13 14:16:55.787Z #007.??? INFO - - ] startup.sh: Running startup scripts... -14:16:55.793 sqs-worker-languagedetection> [2024-09-13 14:16:55.792Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -14:16:55.806 sqs-worker-languagedetection> [2024-09-13 14:16:55.803Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -14:16:55.809 sqs-worker-languagedetection> [2024-09-13 14:16:55.808Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -14:16:55.816 sqs-worker-languagedetection> [2024-09-13 14:16:55.815Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -14:16:55.818 sqs-worker-languagedetection> [2024-09-13 14:16:55.818Z #007.??? INFO - - ] startup.sh: Startup scripts completed -14:16:55.821 sqs-worker-languagedetection> [2024-09-13 14:16:55.820Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -14:16:56.669 sqs-worker-languagedetection> 14:16:56,363 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -14:16:56.669 sqs-worker-languagedetection> 14:16:56,364 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -14:16:56.669 sqs-worker-languagedetection> 14:16:56,365 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -14:16:56.669 sqs-worker-languagedetection> 14:16:56,366 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -14:16:56.669 sqs-worker-languagedetection> 14:16:56,374 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -14:16:56.669 sqs-worker-languagedetection> 14:16:56,374 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -14:16:56.669 sqs-worker-languagedetection> 14:16:56,387 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 10 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -14:16:56.669 sqs-worker-languagedetection> 14:16:56,387 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -14:16:56.669 sqs-worker-languagedetection> 14:16:56,388 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -14:16:56.669 sqs-worker-languagedetection> 14:16:56,389 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -14:16:56.669 sqs-worker-languagedetection> 14:16:56,395 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -14:16:56.669 sqs-worker-languagedetection> 14:16:56,405 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -14:16:56.669 sqs-worker-languagedetection> 14:16:56,493 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -14:16:56.669 sqs-worker-languagedetection> 14:16:56,494 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -14:16:56.669 sqs-worker-languagedetection> 14:16:56,494 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -14:16:56.669 sqs-worker-languagedetection> 14:16:56,575 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -14:16:56.669 sqs-worker-languagedetection> 14:16:56,575 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -14:16:56.669 sqs-worker-languagedetection> 14:16:56,576 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -14:16:56.669 sqs-worker-languagedetection> 14:16:56,580 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -14:16:56.669 sqs-worker-languagedetection> 14:16:56,580 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -14:16:56.669 sqs-worker-languagedetection> 14:16:56,593 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -14:16:56.669 sqs-worker-languagedetection> 14:16:56,599 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -14:16:56.669 sqs-worker-languagedetection> 14:16:56,649 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -14:16:56.669 sqs-worker-languagedetection> 14:16:56,653 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -14:16:56.669 sqs-worker-languagedetection> 14:16:56,653 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -14:16:56.669 sqs-worker-languagedetection> 14:16:56,654 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -14:16:56.669 sqs-worker-languagedetection> 14:16:56,654 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -14:16:56.669 sqs-worker-languagedetection> 14:16:56,655 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -14:16:56.669 sqs-worker-languagedetection> 14:16:56,655 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -14:16:56.669 sqs-worker-languagedetection> 14:16:56,656 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -14:16:56.669 sqs-worker-languagedetection> 14:16:56,656 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 268 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY -14:16:56.669 sqs-worker-languagedetection> -14:16:57.006 sqs-worker-languagedetection> [2024-09-13 14:16:56.973Z #478.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -14:16:57.882 sqs-worker-languagedetection> [2024-09-13 14:16:57.882Z #478.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -14:16:57.885 sqs-worker-languagedetection> [2024-09-13 14:16:57.885Z #478.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -14:16:57.885 sqs-worker-languagedetection> [2024-09-13 14:16:57.885Z #478.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -14:16:57.904 sqs-worker-languagedetection> [2024-09-13 14:16:57.904Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -14:16:57.906 sqs-worker-languagedetection> [2024-09-13 14:16:57.906Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -14:16:57.907 sqs-worker-languagedetection> [2024-09-13 14:16:57.907Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -14:16:57.909 sqs-worker-languagedetection> [2024-09-13 14:16:57.908Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -14:16:57.917 sqs-worker-languagedetection> [2024-09-13 14:16:57.916Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -14:16:57.918 sqs-worker-languagedetection> [2024-09-13 14:16:57.917Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -14:16:57.919 sqs-worker-languagedetection> [2024-09-13 14:16:57.918Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -14:16:57.923 sqs-worker-languagedetection> com.hpe.caf.api.worker.DataStoreException: Cannot create data store -14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) -14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) -14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) -14:16:57.923 sqs-worker-languagedetection> at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) -14:16:57.923 sqs-worker-languagedetection> at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) -14:16:57.923 sqs-worker-languagedetection> at io.dropwizard.core.cli.Cli.run(Cli.java:78) -14:16:57.923 sqs-worker-languagedetection> at io.dropwizard.core.Application.run(Application.java:94) -14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) -14:16:57.923 sqs-worker-languagedetection> Caused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration -14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) -14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) -14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) -14:16:57.923 sqs-worker-languagedetection> at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) -14:16:57.923 sqs-worker-languagedetection> ... 7 more -[2024-09-13 14:16:55.787Z #007.??? INFO - - ] startup.sh: Running startup scripts... -[2024-09-13 14:16:55.792Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -[2024-09-13 14:16:55.803Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -[2024-09-13 14:16:55.808Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -[2024-09-13 14:16:55.815Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -[2024-09-13 14:16:55.818Z #007.??? INFO - - ] startup.sh: Startup scripts completed -[2024-09-13 14:16:55.820Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -14:16:56,363 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -14:16:56,364 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -14:16:56,365 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -14:16:56,366 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -14:16:56,374 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -14:16:56,374 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -14:16:56,387 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 10 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -14:16:56,387 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -14:16:56,388 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -14:16:56,389 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -14:16:56,395 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -14:16:56,405 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -14:16:56,493 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -14:16:56,494 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -14:16:56,494 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -14:16:56,575 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -14:16:56,575 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -14:16:56,576 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -14:16:56,580 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -14:16:56,580 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -14:16:56,593 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -14:16:56,599 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -14:16:56,649 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -14:16:56,653 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -14:16:56,653 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -14:16:56,654 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -14:16:56,654 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -14:16:56,655 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -14:16:56,655 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -14:16:56,656 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -14:16:56,656 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 268 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -[2024-09-13 14:16:56.973Z #478.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -[2024-09-13 14:16:57.882Z #478.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -[2024-09-13 14:16:57.885Z #478.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -[2024-09-13 14:16:57.885Z #478.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -[2024-09-13 14:16:57.904Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -[2024-09-13 14:16:57.906Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -[2024-09-13 14:16:57.907Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -[2024-09-13 14:16:57.908Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -[2024-09-13 14:16:57.916Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -[2024-09-13 14:16:57.917Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -[2024-09-13 14:16:57.918Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -com.hpe.caf.api.worker.DataStoreException: Cannot create data store - at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) - at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) - at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) - at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) - at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) - at io.dropwizard.core.cli.Cli.run(Cli.java:78) - at io.dropwizard.core.Application.run(Application.java:94) - at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) -Caused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration - at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) - at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) - at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) - at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) - ... 7 more -fbad9a[2024-09-13 14:16:55.787Z #007.??? INFO - - ] startup.sh: Running startup scripts... -fbad9a[2024-09-13 14:16:55.792Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -fbad9a[2024-09-13 14:16:55.803Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -fbad9a[2024-09-13 14:16:55.808Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -fbad9a[2024-09-13 14:16:55.815Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -fbad9a[2024-09-13 14:16:55.818Z #007.??? INFO - - ] startup.sh: Startup scripts completed -fbad9a[2024-09-13 14:16:55.820Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -fbad9a14:16:56,363 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -fbad9a14:16:56,364 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -fbad9a14:16:56,365 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -fbad9a14:16:56,366 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -fbad9a14:16:56,374 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -fbad9a14:16:56,374 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -fbad9a14:16:56,387 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 10 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -fbad9a14:16:56,387 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -fbad9a14:16:56,388 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -fbad9a14:16:56,389 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -fbad9a14:16:56,395 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -fbad9a14:16:56,405 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -fbad9a14:16:56,493 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -fbad9a14:16:56,494 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -fbad9a14:16:56,494 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -fbad9a14:16:56,575 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -fbad9a14:16:56,575 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -fbad9a14:16:56,576 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -fbad9a14:16:56,580 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -fbad9a14:16:56,580 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -fbad9a14:16:56,593 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -fbad9a14:16:56,599 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -fbad9a14:16:56,649 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -fbad9a14:16:56,653 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -fbad9a14:16:56,653 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -fbad9a14:16:56,654 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -fbad9a14:16:56,654 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -fbad9a14:16:56,655 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -fbad9a14:16:56,655 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -fbad9a14:16:56,656 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -fbad9a14:16:56,656 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 268 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY -fbad9a -fbad9a[2024-09-13 14:16:56.973Z #478.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -fbad9a[2024-09-13 14:16:57.882Z #478.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -fbad9a[2024-09-13 14:16:57.885Z #478.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -fbad9a[2024-09-13 14:16:57.885Z #478.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -fbad9a[2024-09-13 14:16:57.904Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -fbad9a[2024-09-13 14:16:57.906Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -fbad9a[2024-09-13 14:16:57.907Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -fbad9a[2024-09-13 14:16:57.908Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -fbad9a[2024-09-13 14:16:57.916Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -fbad9a[2024-09-13 14:16:57.917Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -fbad9a[2024-09-13 14:16:57.918Z #478.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -fbad9acom.hpe.caf.api.worker.DataStoreException: Cannot create data store -fbad9a at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) -fbad9a at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) -fbad9a at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) -fbad9a at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) -fbad9a at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) -fbad9a at io.dropwizard.core.cli.Cli.run(Cli.java:78) -fbad9a at io.dropwizard.core.Application.run(Application.java:94) -fbad9a at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) -fbad9aCaused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration -fbad9a at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) -fbad9a at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) -fbad9a at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) -fbad9a at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) -fbad9a ... 7 more -[ERROR] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 2803 ms while waiting on url http://localhost:8082/health-check?type=READY -[ERROR] DOCKER> Error occurred during container startup, shutting down... -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Stop and removed container fbad9ac5cf83 after 0 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container 7046f389076d after 0 ms -14:16:59.177 localstack> Localstack runtime received signal 15 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Stop and removed container 55cc951e87ea after 0 ms -14:17:03.526 webdav> ++ _term -14:17:03.526 webdav> ++ echo 'Caught SIGTERM signal!' -14:17:03.526 webdav> ++ kill -TERM '' -14:17:03.526 webdav> Caught SIGTERM signal! -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container c508cf0a571b after 0 ms -[ERROR] DOCKER> I/O Error [[dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 2803 ms while waiting on url http://localhost:8082/health-check?type=READY] -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD FAILURE -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 02:01 min -[INFO] Finished at: 2024-09-13T15:17:04+01:00 -[INFO] ------------------------------------------------------------------------ -[ERROR] Failed to execute goal io.fabric8:docker-maven-plugin:0.43.4:start (start) on project worker-languagedetection-container: I/O Error: [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 2803 ms while waiting on url http://localhost:8082/health-check?type=READY -> [Help 1] -[ERROR] -[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. -[ERROR] Re-run Maven using the -X switch to enable full debug logging. -[ERROR] -[ERROR] For more information about the errors and possible solutions, please read the following articles: -[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException -[INFO] Scanning for projects... -[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] -[INFO] Inspecting build with total of 1 modules... -[INFO] Installing Nexus Staging features: -[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin -[INFO] -[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- -[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT -[INFO] from pom.xml -[INFO] --------------------------------[ pom ]--------------------------------- -[INFO] -[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] -[INFO] -[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- -[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target -[INFO] -[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- -[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed -[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed -[INFO] -[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- -[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true -[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container -[INFO] Git info extracted in 330ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' -[INFO] -[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- -[INFO] Using plugin classloader, includes GMavenPlus and project classpath. -[INFO] Using Groovy 3.0.19 to perform execute. -[INFO] -[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- -[INFO] Updating license headers... -[INFO] -[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- -[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar -[INFO] -[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- -[INFO] Copying 2 resources from src/main/config to target/config-files -[INFO] -[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- -[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox -[INFO] DOCKER> -[INFO] DOCKER> ---> 6fd955f66c23 -[INFO] DOCKER> Step 2/4 : COPY maven /config/ -[INFO] DOCKER> -[INFO] DOCKER> ---> 282f83c1f492 -[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Running in ad00220a5116 -[INFO] DOCKER> ---> Removed intermediate container ad00220a5116 -[INFO] DOCKER> ---> 9c36e3347e26 -[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Running in ad91ac401653 -[INFO] DOCKER> ---> Removed intermediate container ad91ac401653 -[INFO] DOCKER> ---> 29043a6f2a15 -[INFO] DOCKER> Successfully built 29043a6f2a15 -[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:29043 -[INFO] DOCKER> worker-languagedetection-container-test-config:5.2.0-SNAPSHOT: Removed dangling image sha256:4a9eb -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/sqs-worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/sqs-worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Created docker-build.tar in 1 minute and 13 seconds -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 -[INFO] DOCKER> -[INFO] DOCKER> ---> 0f51baaf46f5 -[INFO] DOCKER> Step 2/4 : COPY maven /maven/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 91e7f56ef8cf -[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 002fc83963fa -[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 2adee4e4f048 -[INFO] DOCKER> Successfully built 2adee4e4f048 -[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Built image sha256:2adee -[INFO] -[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- -[INFO] Changes detected - recompiling the module! :source -[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes -[INFO] -[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- -[INFO] -[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- -[INFO] Not executing Javadoc as the project is not a Java classpath-capable package -[INFO] -[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container 60581ef34d50 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. -14:19:44.197 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf -14:19:44.198 webdav> + getent passwd 33 -14:19:44.199 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin -14:19:44.199 webdav> + useradd -r webdav -u 33 -g 33 -14:19:44.241 webdav> useradd: UID 33 is not unique -14:19:44.242 webdav> + mkdir -p /srv/common/webdav -14:19:44.243 webdav> + chown 33 /srv/common/webdav -14:19:44.243 webdav> + trap _term SIGTERM -14:19:44.244 webdav> + pid=12 -14:19:44.244 webdav> + wait 12 -14:19:44.254 webdav> + /usr/sbin/apache2 -D FOREGROUND -14:19:44.254 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -14:19:44.256 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -14:19:44.257 webdav> [Fri Sep 13 14:19:44.257093 2024] [mpm_event:notice] [pid 12:tid 140048542439296] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations -14:19:44.257 webdav> [Fri Sep 13 14:19:44.257168 2024] [core:notice] [pid 12:tid 140048542439296] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' -14:19:44.326 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:14:19:44 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 90 ms -[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Start container 781b91173a81 -14:19:45.614 localstack> -14:19:45.614 localstack> LocalStack version: 3.7.3.dev18 -14:19:45.614 localstack> LocalStack build date: 2024-09-13 -14:19:45.614 localstack> LocalStack build git hash: 55e2d9fd6 -14:19:45.614 localstack> -14:19:46.063 localstack> Ready. -[INFO] DOCKER> Pattern 'Ready.' matched for container 781b91173a81 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Waited on log out 'Ready.' 1510 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container 58e2968aec93 -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Start container 30c4feb98d84 -14:19:47.397 sqs-worker-languagedetection> [2024-09-13 14:19:47.396Z #008.??? INFO - - ] startup.sh: Running startup scripts... -14:19:47.400 sqs-worker-languagedetection> [2024-09-13 14:19:47.399Z #008.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. -14:19:47.407 sqs-worker-languagedetection> [2024-09-13 14:19:47.406Z #00F.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -14:19:47.409 sqs-worker-languagedetection> [2024-09-13 14:19:47.408Z #008.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -14:19:47.419 sqs-worker-languagedetection> [2024-09-13 14:19:47.417Z #017.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -14:19:47.421 sqs-worker-languagedetection> [2024-09-13 14:19:47.420Z #008.??? INFO - - ] startup.sh: Startup scripts completed -14:19:47.423 sqs-worker-languagedetection> [2024-09-13 14:19:47.422Z #008.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -14:19:47.727 sqs-worker-languagedetection> 14:19:47,556 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -14:19:47.727 sqs-worker-languagedetection> 14:19:47,557 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -14:19:47.727 sqs-worker-languagedetection> 14:19:47,557 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -14:19:47.727 sqs-worker-languagedetection> 14:19:47,558 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -14:19:47.727 sqs-worker-languagedetection> 14:19:47,563 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -14:19:47.727 sqs-worker-languagedetection> 14:19:47,563 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -14:19:47.727 sqs-worker-languagedetection> 14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -14:19:47.727 sqs-worker-languagedetection> 14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -14:19:47.727 sqs-worker-languagedetection> 14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -14:19:47.727 sqs-worker-languagedetection> 14:19:47,573 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -14:19:47.727 sqs-worker-languagedetection> 14:19:47,577 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -14:19:47.727 sqs-worker-languagedetection> 14:19:47,582 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -14:19:47.727 sqs-worker-languagedetection> 14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -14:19:47.727 sqs-worker-languagedetection> 14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -14:19:47.727 sqs-worker-languagedetection> 14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -14:19:47.727 sqs-worker-languagedetection> 14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -14:19:47.727 sqs-worker-languagedetection> 14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -14:19:47.727 sqs-worker-languagedetection> 14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -14:19:47.727 sqs-worker-languagedetection> 14:19:47,677 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -14:19:47.727 sqs-worker-languagedetection> 14:19:47,677 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -14:19:47.727 sqs-worker-languagedetection> 14:19:47,684 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -14:19:47.727 sqs-worker-languagedetection> 14:19:47,687 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -14:19:47.727 sqs-worker-languagedetection> 14:19:47,715 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -14:19:47.727 sqs-worker-languagedetection> 14:19:47,718 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -14:19:47.727 sqs-worker-languagedetection> 14:19:47,718 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -14:19:47.727 sqs-worker-languagedetection> 14:19:47,718 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -14:19:47.727 sqs-worker-languagedetection> 14:19:47,719 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -14:19:47.727 sqs-worker-languagedetection> 14:19:47,719 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -14:19:47.727 sqs-worker-languagedetection> 14:19:47,719 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -14:19:47.727 sqs-worker-languagedetection> 14:19:47,720 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -14:19:47.727 sqs-worker-languagedetection> 14:19:47,720 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 148 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY -14:19:47.727 sqs-worker-languagedetection> -14:19:47.935 sqs-worker-languagedetection> [2024-09-13 14:19:47.915Z #da0.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -14:19:48.601 sqs-worker-languagedetection> [2024-09-13 14:19:48.600Z #da0.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -14:19:48.602 sqs-worker-languagedetection> [2024-09-13 14:19:48.601Z #da0.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -14:19:48.602 sqs-worker-languagedetection> [2024-09-13 14:19:48.602Z #da0.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -14:19:48.614 sqs-worker-languagedetection> [2024-09-13 14:19:48.614Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -14:19:48.616 sqs-worker-languagedetection> [2024-09-13 14:19:48.616Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -14:19:48.617 sqs-worker-languagedetection> [2024-09-13 14:19:48.617Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -14:19:48.618 sqs-worker-languagedetection> [2024-09-13 14:19:48.618Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -14:19:48.625 sqs-worker-languagedetection> [2024-09-13 14:19:48.625Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -14:19:48.626 sqs-worker-languagedetection> [2024-09-13 14:19:48.626Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -14:19:48.628 sqs-worker-languagedetection> [2024-09-13 14:19:48.628Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -14:19:48.631 sqs-worker-languagedetection> com.hpe.caf.api.worker.DataStoreException: Cannot create data store -14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) -14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) -14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) -14:19:48.631 sqs-worker-languagedetection> at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) -14:19:48.631 sqs-worker-languagedetection> at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) -14:19:48.631 sqs-worker-languagedetection> at io.dropwizard.core.cli.Cli.run(Cli.java:78) -14:19:48.631 sqs-worker-languagedetection> at io.dropwizard.core.Application.run(Application.java:94) -14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) -14:19:48.631 sqs-worker-languagedetection> Caused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration -14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) -14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) -14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) -14:19:48.631 sqs-worker-languagedetection> at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) -14:19:48.631 sqs-worker-languagedetection> ... 7 more -[2024-09-13 14:19:47.396Z #008.??? INFO - - ] startup.sh: Running startup scripts... -[2024-09-13 14:19:47.399Z #008.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -[2024-09-13 14:19:47.406Z #00F.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -[2024-09-13 14:19:47.408Z #008.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -[2024-09-13 14:19:47.417Z #017.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -[2024-09-13 14:19:47.420Z #008.??? INFO - - ] startup.sh: Startup scripts completed -[2024-09-13 14:19:47.422Z #008.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -14:19:47,556 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -14:19:47,557 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -14:19:47,557 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -14:19:47,558 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -14:19:47,563 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -14:19:47,563 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -14:19:47,573 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -14:19:47,577 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -14:19:47,582 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -14:19:47,677 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -14:19:47,677 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -14:19:47,684 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -14:19:47,687 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -14:19:47,715 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -14:19:47,718 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -14:19:47,718 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -14:19:47,718 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -14:19:47,719 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -14:19:47,719 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -14:19:47,719 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -14:19:47,720 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -14:19:47,720 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 148 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -[2024-09-13 14:19:47.915Z #da0.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -[2024-09-13 14:19:48.600Z #da0.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -[2024-09-13 14:19:48.601Z #da0.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -[2024-09-13 14:19:48.602Z #da0.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -[2024-09-13 14:19:48.614Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -[2024-09-13 14:19:48.616Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -[2024-09-13 14:19:48.617Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -[2024-09-13 14:19:48.618Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -[2024-09-13 14:19:48.625Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -[2024-09-13 14:19:48.626Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -[2024-09-13 14:19:48.628Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -com.hpe.caf.api.worker.DataStoreException: Cannot create data store - at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) - at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) - at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) - at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) - at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) - at io.dropwizard.core.cli.Cli.run(Cli.java:78) - at io.dropwizard.core.Application.run(Application.java:94) - at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) -Caused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration - at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) - at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) - at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) - at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) - ... 7 more -30c4fe[2024-09-13 14:19:47.396Z #008.??? INFO - - ] startup.sh: Running startup scripts... -30c4fe[2024-09-13 14:19:47.399Z #008.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -30c4fe[2024-09-13 14:19:47.406Z #00F.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -30c4fe[2024-09-13 14:19:47.408Z #008.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -30c4fe[2024-09-13 14:19:47.417Z #017.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -30c4fe[2024-09-13 14:19:47.420Z #008.??? INFO - - ] startup.sh: Startup scripts completed -30c4fe[2024-09-13 14:19:47.422Z #008.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -30c4fe14:19:47,556 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -30c4fe14:19:47,557 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -30c4fe14:19:47,557 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -30c4fe14:19:47,558 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -30c4fe14:19:47,563 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -30c4fe14:19:47,563 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -30c4fe14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -30c4fe14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -30c4fe14:19:47,572 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -30c4fe14:19:47,573 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -30c4fe14:19:47,577 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -30c4fe14:19:47,582 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -30c4fe14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -30c4fe14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -30c4fe14:19:47,623 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -30c4fe14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -30c4fe14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -30c4fe14:19:47,674 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -30c4fe14:19:47,677 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -30c4fe14:19:47,677 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -30c4fe14:19:47,684 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -30c4fe14:19:47,687 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -30c4fe14:19:47,715 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -30c4fe14:19:47,718 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -30c4fe14:19:47,718 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -30c4fe14:19:47,718 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -30c4fe14:19:47,719 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -30c4fe14:19:47,719 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -30c4fe14:19:47,719 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -30c4fe14:19:47,720 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -30c4fe14:19:47,720 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 148 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY -30c4fe -30c4fe[2024-09-13 14:19:47.915Z #da0.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -30c4fe[2024-09-13 14:19:48.600Z #da0.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -30c4fe[2024-09-13 14:19:48.601Z #da0.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -30c4fe[2024-09-13 14:19:48.602Z #da0.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -30c4fe[2024-09-13 14:19:48.614Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -30c4fe[2024-09-13 14:19:48.616Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -30c4fe[2024-09-13 14:19:48.617Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -30c4fe[2024-09-13 14:19:48.618Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -30c4fe[2024-09-13 14:19:48.625Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -30c4fe[2024-09-13 14:19:48.626Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -30c4fe[2024-09-13 14:19:48.628Z #da0.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -30c4fecom.hpe.caf.api.worker.DataStoreException: Cannot create data store -30c4fe at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:33) -30c4fe at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:116) -30c4fe at com.hpe.caf.worker.core.WorkerApplication.run(WorkerApplication.java:69) -30c4fe at io.dropwizard.core.cli.EnvironmentCommand.run(EnvironmentCommand.java:66) -30c4fe at io.dropwizard.core.cli.ConfiguredCommand.run(ConfiguredCommand.java:98) -30c4fe at io.dropwizard.core.cli.Cli.run(Cli.java:78) -30c4fe at io.dropwizard.core.Application.run(Application.java:94) -30c4fe at com.hpe.caf.worker.core.WorkerApplication.main(WorkerApplication.java:83) -30c4feCaused by: com.hpe.caf.api.ConfigurationException: No configuration found for FileSystemDataStoreConfiguration -30c4fe at com.hpe.caf.api.CafConfigurationSource.getConfig(CafConfigurationSource.java:228) -30c4fe at com.hpe.caf.api.CafConfigurationSource.getCompleteConfig(CafConfigurationSource.java:161) -30c4fe at com.hpe.caf.api.CafConfigurationSource.getConfiguration(CafConfigurationSource.java:93) -30c4fe at com.hpe.caf.worker.datastore.fs.FileSystemDataStoreProvider.getDataStore(FileSystemDataStoreProvider.java:31) -30c4fe ... 7 more -[ERROR] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 1960 ms while waiting on url http://localhost:8082/health-check?type=READY -[ERROR] DOCKER> Error occurred during container startup, shutting down... -[INFO] DOCKER> [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Stop and removed container 30c4feb98d84 after 0 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container 58e2968aec93 after 0 ms -14:19:49.971 localstack> Localstack runtime received signal 15 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Stop and removed container 781b91173a81 after 0 ms -14:19:52.200 webdav> ++ _term -14:19:52.200 webdav> ++ echo 'Caught SIGTERM signal!' -14:19:52.200 webdav> ++ kill -TERM '' -14:19:52.200 webdav> Caught SIGTERM signal! -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container 60581ef34d50 after 0 ms -[ERROR] DOCKER> I/O Error [[dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 1960 ms while waiting on url http://localhost:8082/health-check?type=READY] -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD FAILURE -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 01:49 min -[INFO] Finished at: 2024-09-13T15:19:53+01:00 -[INFO] ------------------------------------------------------------------------ -[ERROR] Failed to execute goal io.fabric8:docker-maven-plugin:0.43.4:start (start) on project worker-languagedetection-container: I/O Error: [dev/cafdataprocessing/sqs-worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Container stopped with exit code 1 unexpectedly after 1960 ms while waiting on url http://localhost:8082/health-check?type=READY -> [Help 1] -[ERROR] -[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. -[ERROR] Re-run Maven using the -X switch to enable full debug logging. -[ERROR] -[ERROR] For more information about the errors and possible solutions, please read the following articles: -[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException -[INFO] Scanning for projects... -[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] -[INFO] Inspecting build with total of 1 modules... -[INFO] Installing Nexus Staging features: -[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin -[INFO] -[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- -[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT -[INFO] from pom.xml -[INFO] --------------------------------[ pom ]--------------------------------- -[INFO] -[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest] -[INFO] -[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- -[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target -[INFO] -[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- -[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed -[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed -[INFO] -[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- -[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true -[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container -[INFO] Git info extracted in 283ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' -[INFO] -[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- -[INFO] Using plugin classloader, includes GMavenPlus and project classpath. -[INFO] Using Groovy 3.0.19 to perform execute. -[INFO] -[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- -[INFO] Updating license headers... -[INFO] -[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- -[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar -[INFO] -[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- -[INFO] Copying 2 resources from src/main/config to target/config-files -[INFO] -[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- -[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox -[INFO] DOCKER> -[INFO] DOCKER> ---> 6fd955f66c23 -[INFO] DOCKER> Step 2/4 : COPY maven /config/ -[INFO] DOCKER> -[INFO] DOCKER> ---> efe137734a0a -[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Running in d5672e75d4b7 -[INFO] DOCKER> ---> Removed intermediate container d5672e75d4b7 -[INFO] DOCKER> ---> fb3dd21b80b4 -[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Running in caeff3bd686d -[INFO] DOCKER> ---> Removed intermediate container caeff3bd686d -[INFO] DOCKER> ---> e4f3012b2a56 -[INFO] DOCKER> Successfully built e4f3012b2a56 -[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:e4f30 -[INFO] DOCKER> worker-languagedetection-container-test-config:5.2.0-SNAPSHOT: Removed dangling image sha256:29043 -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Created docker-build.tar in 1 minute and 15 seconds -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 -[INFO] DOCKER> -[INFO] DOCKER> ---> 0f51baaf46f5 -[INFO] DOCKER> Step 2/4 : COPY maven /maven/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 91e7f56ef8cf -[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 002fc83963fa -[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 2adee4e4f048 -[INFO] DOCKER> Successfully built 2adee4e4f048 -[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Built image sha256:2adee -[INFO] -[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- -[INFO] Changes detected - recompiling the module! :source -[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes -[INFO] -[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- -[INFO] -[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- -[INFO] Not executing Javadoc as the project is not a Java classpath-capable package -[INFO] -[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container d2f76f5cc49c -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. -14:24:37.068 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf -14:24:37.070 webdav> + getent passwd 33 -14:24:37.071 webdav> + useradd -r webdav -u 33 -g 33 -14:24:37.071 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin -14:24:37.122 webdav> useradd: UID 33 is not unique -14:24:37.123 webdav> + mkdir -p /srv/common/webdav -14:24:37.123 webdav> + chown 33 /srv/common/webdav -14:24:37.124 webdav> + trap _term SIGTERM -14:24:37.124 webdav> + pid=12 -14:24:37.124 webdav> + wait 12 -14:24:37.125 webdav> + /usr/sbin/apache2 -D FOREGROUND -14:24:37.138 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -14:24:37.142 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -14:24:37.144 webdav> [Fri Sep 13 14:24:37.144627 2024] [mpm_event:notice] [pid 12:tid 140672417593216] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations -14:24:37.144 webdav> [Fri Sep 13 14:24:37.144683 2024] [core:notice] [pid 12:tid 140672417593216] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' -14:24:37.208 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:14:24:37 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 104 ms -[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Start container 63496b4462da -14:24:38.460 localstack> -14:24:38.460 localstack> LocalStack version: 3.7.3.dev19 -14:24:38.460 localstack> LocalStack build date: 2024-09-13 -14:24:38.460 localstack> LocalStack build git hash: cb81582d8 -14:24:38.460 localstack> -14:24:38.971 localstack> Ready. -[INFO] DOCKER> Pattern 'Ready.' matched for container 63496b4462da -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Waited on log out 'Ready.' 1508 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container 6638dad2c17a -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Start container 477d5bd63929 -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. -14:24:40.253 worker-languagedetection> [2024-09-13 14:24:40.252Z #007.??? INFO - - ] startup.sh: Running startup scripts... -14:24:40.257 worker-languagedetection> [2024-09-13 14:24:40.256Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -14:24:40.267 worker-languagedetection> [2024-09-13 14:24:40.265Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -14:24:40.270 worker-languagedetection> [2024-09-13 14:24:40.268Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -14:24:40.283 worker-languagedetection> [2024-09-13 14:24:40.281Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -14:24:40.286 worker-languagedetection> [2024-09-13 14:24:40.284Z #007.??? INFO - - ] startup.sh: Startup scripts completed -14:24:40.289 worker-languagedetection> [2024-09-13 14:24:40.288Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -14:24:40.707 worker-languagedetection> 14:24:40,466 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -14:24:40.707 worker-languagedetection> 14:24:40,469 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -14:24:40.707 worker-languagedetection> 14:24:40,469 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -14:24:40.707 worker-languagedetection> 14:24:40,471 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -14:24:40.707 worker-languagedetection> 14:24:40,479 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -14:24:40.707 worker-languagedetection> 14:24:40,479 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -14:24:40.707 worker-languagedetection> 14:24:40,492 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 9 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -14:24:40.707 worker-languagedetection> 14:24:40,492 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -14:24:40.707 worker-languagedetection> 14:24:40,492 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -14:24:40.707 worker-languagedetection> 14:24:40,493 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -14:24:40.707 worker-languagedetection> 14:24:40,499 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -14:24:40.707 worker-languagedetection> 14:24:40,506 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -14:24:40.707 worker-languagedetection> 14:24:40,567 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -14:24:40.707 worker-languagedetection> 14:24:40,567 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -14:24:40.707 worker-languagedetection> 14:24:40,567 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -14:24:40.707 worker-languagedetection> 14:24:40,631 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -14:24:40.707 worker-languagedetection> 14:24:40,631 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -14:24:40.707 worker-languagedetection> 14:24:40,631 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -14:24:40.707 worker-languagedetection> 14:24:40,637 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -14:24:40.707 worker-languagedetection> 14:24:40,637 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -14:24:40.707 worker-languagedetection> 14:24:40,647 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -14:24:40.707 worker-languagedetection> 14:24:40,651 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -14:24:40.707 worker-languagedetection> 14:24:40,689 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -14:24:40.707 worker-languagedetection> 14:24:40,694 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -14:24:40.707 worker-languagedetection> 14:24:40,694 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -14:24:40.707 worker-languagedetection> 14:24:40,694 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -14:24:40.707 worker-languagedetection> 14:24:40,695 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -14:24:40.707 worker-languagedetection> 14:24:40,695 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -14:24:40.707 worker-languagedetection> 14:24:40,696 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -14:24:40.707 worker-languagedetection> 14:24:40,696 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -14:24:40.707 worker-languagedetection> 14:24:40,696 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 204 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY -14:24:40.707 worker-languagedetection> -14:24:40.979 worker-languagedetection> [2024-09-13 14:24:40.957Z #ad5.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -14:24:41.809 worker-languagedetection> [2024-09-13 14:24:41.808Z #ad5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -14:24:41.810 worker-languagedetection> [2024-09-13 14:24:41.810Z #ad5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -14:24:41.812 worker-languagedetection> [2024-09-13 14:24:41.811Z #ad5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -14:24:41.826 worker-languagedetection> [2024-09-13 14:24:41.826Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -14:24:41.829 worker-languagedetection> [2024-09-13 14:24:41.829Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -14:24:41.831 worker-languagedetection> [2024-09-13 14:24:41.831Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -14:24:41.833 worker-languagedetection> [2024-09-13 14:24:41.833Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -14:24:41.842 worker-languagedetection> [2024-09-13 14:24:41.841Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -14:24:41.843 worker-languagedetection> [2024-09-13 14:24:41.843Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -14:24:41.845 worker-languagedetection> [2024-09-13 14:24:41.844Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -14:24:41.904 worker-languagedetection> [2024-09-13 14:24:41.903Z #ad5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider -14:24:41.952 worker-languagedetection> [2024-09-13 14:24:41.946Z #ad5.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} -14:24:42.092 worker-languagedetection> [2024-09-13 14:24:42.092Z #ad5.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -14:24:42.094 worker-languagedetection> [2024-09-13 14:24:42.092Z #ad5.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -14:24:42.095 worker-languagedetection> [2024-09-13 14:24:42.095Z #ad5.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS -14:24:42.105 worker-languagedetection> [2024-09-13 14:24:42.105Z #ad5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. -14:24:42.125 worker-languagedetection> [2024-09-13 14:24:42.125Z #ad5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE -14:24:42.128 worker-languagedetection> [2024-09-13 14:24:42.128Z #ad5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY -14:24:42.130 worker-languagedetection> [2024-09-13 14:24:42.129Z #ad5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY -14:24:42.130 worker-languagedetection> [2024-09-13 14:24:42.130Z #ad5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY -14:24:42.140 worker-languagedetection> [2024-09-13 14:24:42.139Z #ad5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE -14:24:42.145 worker-languagedetection> [2024-09-13 14:24:42.145Z #ad5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY -14:24:42.146 worker-languagedetection> [2024-09-13 14:24:42.146Z #ad5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE -14:24:42.148 worker-languagedetection> -14:24:42.533 worker-languagedetection> [2024-09-13 14:24:42.532Z #ad5.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} -14:24:42.535 worker-languagedetection> [2024-09-13 14:24:42.534Z #ad5.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@2d5a1588{/,null,AVAILABLE} -14:24:42.538 worker-languagedetection> [2024-09-13 14:24:42.537Z #ad5.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} -14:24:42.538 worker-languagedetection> [2024-09-13 14:24:42.538Z #ad5.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@1c61eda5{/,null,AVAILABLE} -14:24:42.546 worker-languagedetection> [2024-09-13 14:24:42.546Z #ad5.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -14:24:42.548 worker-languagedetection> [2024-09-13 14:24:42.547Z #ad5.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -14:24:42.549 worker-languagedetection> [2024-09-13 14:24:42.549Z #ad5.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@517a2b0{STARTING}[11.0.23,sto=30000] @2256ms -14:24:42.620 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 12 -14:24:43.116 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:43.628 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:24:44.133 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:44.647 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 -14:24:45.156 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:24:45.662 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:46.166 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:46.675 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:47.180 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:47.688 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:48.192 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:48.697 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:49.201 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:49.707 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:50.212 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:50 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:50.716 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:50 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:51.225 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:51 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:51.731 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:51 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:52.239 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:52 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:52.743 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:52 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:53.250 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:53 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:53.759 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:53 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:54.264 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:54 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:24:54.770 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:54 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:24:55.275 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:55 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:55.782 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:55 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:56.286 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:56 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:56.799 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:56 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:24:57.141 worker-languagedetection> [2024-09-13 14:24:57.141Z #ad5.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE -14:24:57.306 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:57 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:24:57.810 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:57 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:24:58.250 worker-languagedetection> [2024-09-13 14:24:58.250Z #ad5.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE -14:24:58.250 worker-languagedetection> [2024-09-13 14:24:58.249Z #ad5.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE -14:24:58.251 worker-languagedetection> [2024-09-13 14:24:58.250Z #ad5.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY -14:24:58.255 worker-languagedetection> [2024-09-13 14:24:58.254Z #ad5.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY -14:24:58.255 worker-languagedetection> [2024-09-13 14:24:58.254Z #ad5.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY -14:24:58.256 worker-languagedetection> [2024-09-13 14:24:58.255Z #ad5.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waited on url http://localhost:8082/health-check?type=READY 18042 ms -[INFO] -[INFO] --- failsafe:3.1.2:integration-test (sqs-implementation-testing) @ worker-languagedetection-container --- -14:24:58.317 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:24:58 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider -[INFO] -[INFO] ------------------------------------------------------- -[INFO] T E S T S -[INFO] ------------------------------------------------------- -[INFO] Running com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT -15:24:59,180 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -15:24:59,184 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - No custom configurators were discovered as a service. -15:24:59,184 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -15:24:59,187 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -15:24:59,197 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -15:24:59,198 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -15:24:59,210 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 12 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -15:24:59,210 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -15:24:59,211 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -15:24:59,213 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -15:24:59,218 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] -15:24:59,236 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@b2c9a9c - URL [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -15:24:59,338 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -15:24:59,338 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -15:24:59,338 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -15:24:59,438 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -15:24:59,438 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -15:24:59,438 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -15:24:59,449 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -15:24:59,449 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -15:24:59,464 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -15:24:59,467 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -15:24:59,564 |-INFO in ch.qos.logback.classic.pattern.DateConverter@fa4c865 - Setting zoneId to "UTC" -15:24:59,568 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -15:24:59,568 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -15:24:59,569 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -15:24:59,570 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -15:24:59,570 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -15:24:59,570 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@3bd82cf5 - End of configuration. -15:24:59,571 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@544fa968 - Registering current configuration as safe fallback point -15:24:59,571 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 360 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_field_multi_lang_en_fr_ger.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_multi_datasource.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_single_datasource.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_invalid.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple_multi.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_english.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_french.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_german.yaml.testcase - -=============== Starting test Item single_lang_french.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_french.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_french.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_french.yaml -Description: null -Associated tickets: null -Comments: single_lang_french.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 1 -Number of successful test cases (all test instances passes): 1 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid_combined.yaml -================================================================================ -14:25:10.343 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:25:10 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 2 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 2 -Number of successful test cases (all test instances passes): 2 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 3 -Number of successful test cases (all test instances passes): 3 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_simple_multi.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_simple_multi.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODE_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_FR_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_GER_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_simple_multi.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_simple_multi.yaml -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 4 -Number of successful test cases (all test instances passes): 4 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown_split.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 5 -Number of successful test cases (all test instances passes): 5 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_combined.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 6 -Number of successful test cases (all test instances passes): 6 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 7 -Number of successful test cases (all test instances passes): 7 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid_split.yaml -================================================================================ -14:25:40.394 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:25:40 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 0 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 8 -Number of successful test cases (all test instances passes): 8 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item single_lang_english.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_english.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_english.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_english.yaml -Description: null -Associated tickets: null -Comments: single_lang_english.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 9 -Number of successful test cases (all test instances passes): 9 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_lang_single_datasource.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_lang_single_datasource.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_lang_single_datasource.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_lang_single_datasource.yaml -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 10 -Number of successful test cases (all test instances passes): 10 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_field_multi_lang_en_fr_ger.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_field_multi_lang_en_fr_ger.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODE_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_FR_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_GER_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_field_multi_lang_en_fr_ger.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 11 -Number of successful test cases (all test instances passes): 11 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang_combined.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 12 -Number of successful test cases (all test instances passes): 12 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 13 -Number of successful test cases (all test instances passes): 13 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang_split.yaml -================================================================================ -14:26:10.458 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:26:10 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 14 -Number of successful test cases (all test instances passes): 14 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== -14:26:13.603 worker-languagedetection> [2024-09-13 14:26:13.603Z #ad5.054 ERROR - - ] c.h.c.w.l.LanguageDetectionWorker: Failed to read result format specified. - -=============== Starting test Item resultFormat_invalid.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_invalid.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_invalid.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_invalid.yaml -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 15 -Number of successful test cases (all test instances passes): 15 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown_combined.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 16 -Number of successful test cases (all test instances passes): 16 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_simple.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_simple.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_simple.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_simple.yaml -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 17 -Number of successful test cases (all test instances passes): 17 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_lang_multi_datasource.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_lang_multi_datasource.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_lang_multi_datasource.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 18 -Number of successful test cases (all test instances passes): 18 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_split.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_multi_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 19 -Number of successful test cases (all test instances passes): 19 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item single_lang_german.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_german.yaml -================================================================================ -14:26:40.507 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:26:40 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 0 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_multi_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_german.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_german.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_german.yaml -Description: null -Associated tickets: null -Comments: single_lang_german.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_german.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_german.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 20 -Number of successful test cases (all test instances passes): 20 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_multi_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_german.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS -Item with id single_lang_german.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_german.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_german.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 21 -Number of successful test cases (all test instances passes): 21 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== -[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 110.1 s -- in com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT -[INFO] -[INFO] Results: -[INFO] -[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0 -[INFO] -[INFO] -[INFO] --- failsafe:3.1.2:integration-test (rabbit-implementation-testing) @ worker-languagedetection-container --- -[INFO] Tests are skipped. -[INFO] -[INFO] --- docker:0.43.4:stop (stop) @ worker-languagedetection-container --- -14:26:49.821 worker-languagedetection> [2024-09-13 14:26:49.820Z #ad5.033 INFO - - ] o.eclipse.jetty.server.Server: Stopped Server@517a2b0{STOPPING}[11.0.23,sto=30000] -14:26:49.822 worker-languagedetection> [2024-09-13 14:26:49.822Z #ad5.033 INFO - - ] o.eclipse.jetty.server.Server: Shutdown Server@517a2b0{STOPPING}[11.0.23,sto=30000] -14:26:49.827 worker-languagedetection> [2024-09-13 14:26:49.826Z #ad5.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -14:26:49.828 worker-languagedetection> [2024-09-13 14:26:49.827Z #ad5.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -14:26:49.829 worker-languagedetection> [2024-09-13 14:26:49.829Z #ad5.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@1c61eda5{/,null,STOPPED} -14:26:49.839 worker-languagedetection> [2024-09-13 14:26:49.839Z #ad5.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@2d5a1588{/,null,STOPPED} -14:26:49.842 worker-languagedetection> [2024-09-13 14:26:49.841Z #ad5.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stop requested, allowing in-progress tasks to complete. -14:26:49.842 worker-languagedetection> [2024-09-13 14:26:49.842Z #ad5.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stopped. -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Stop and removed container 477d5bd63929 after 0 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container 6638dad2c17a after 0 ms -14:26:51.444 localstack> Localstack runtime received signal 15 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "localstack": Stop and removed container 63496b4462da after 0 ms -14:26:57.457 webdav> Caught SIGTERM signal! -14:26:57.457 webdav> ++ _term -14:26:57.457 webdav> ++ echo 'Caught SIGTERM signal!' -14:26:57.457 webdav> ++ kill -TERM '' -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container d2f76f5cc49c after 0 ms -[INFO] -[INFO] --- license:4.3:check (check-license-headers) @ worker-languagedetection-container --- -[INFO] Checking licenses... -[INFO] -[INFO] --- dependency:3.6.0:analyze-only (check-dependencies) @ worker-languagedetection-container --- -[INFO] Skipping pom project -[INFO] -[INFO] --- duplicate-finder:2.0.1:check (deepcheck-dependencies) @ worker-languagedetection-container --- -[INFO] Ignoring POM project! -[INFO] -[INFO] --- failsafe:3.1.2:verify (sqs-implementation-testing) @ worker-languagedetection-container --- -[INFO] -[INFO] --- failsafe:3.1.2:verify (rabbit-implementation-testing) @ worker-languagedetection-container --- -[INFO] Tests are skipped. -[INFO] -[INFO] --- install:3.1.1:install (default-install) @ worker-languagedetection-container --- -[INFO] Skipping artifact installation -[INFO] -[INFO] --- docker-versions:1.0.0-29:depopulate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD SUCCESS -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 05:20 min -[INFO] Finished at: 2024-09-13T15:27:00+01:00 -[INFO] ------------------------------------------------------------------------ -[INFO] Scanning for projects... -[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] -[INFO] Inspecting build with total of 1 modules... -[INFO] Installing Nexus Staging features: -[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin -[INFO] -[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- -[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT -[INFO] from pom.xml -[INFO] --------------------------------[ pom ]--------------------------------- -[INFO] -[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest] -[INFO] -[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- -[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target -[INFO] -[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- -[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed -[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed -[INFO] -[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- -[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true -[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container -[INFO] Git info extracted in 335ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' -[INFO] -[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- -[INFO] Using plugin classloader, includes GMavenPlus and project classpath. -[INFO] Using Groovy 3.0.19 to perform execute. -[INFO] -[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- -[INFO] Updating license headers... -[INFO] -[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- -[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar -[INFO] -[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- -[INFO] Copying 2 resources from src/main/config to target/config-files -[INFO] -[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- -[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox -[INFO] DOCKER> -[INFO] DOCKER> ---> 6fd955f66c23 -[INFO] DOCKER> Step 2/4 : COPY maven /config/ -[INFO] DOCKER> -[INFO] DOCKER> ---> 8be7948e3c01 -[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Running in 79ab90ac440d -[INFO] DOCKER> ---> Removed intermediate container 79ab90ac440d -[INFO] DOCKER> ---> ef52e370b90f -[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Running in d84db6d20e3a -[INFO] DOCKER> ---> Removed intermediate container d84db6d20e3a -[INFO] DOCKER> ---> 1f97ff59e5f4 -[INFO] DOCKER> Successfully built 1f97ff59e5f4 -[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:1f97f -[INFO] DOCKER> worker-languagedetection-container-test-config:5.2.0-SNAPSHOT: Removed dangling image sha256:e4f30 -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Created docker-build.tar in 1 minute and 3 seconds -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 -[INFO] DOCKER> -[INFO] DOCKER> ---> 0f51baaf46f5 -[INFO] DOCKER> Step 2/4 : COPY maven /maven/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 91e7f56ef8cf -[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 002fc83963fa -[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 2adee4e4f048 -[INFO] DOCKER> Successfully built 2adee4e4f048 -[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Built image sha256:2adee -[INFO] -[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- -[INFO] Changes detected - recompiling the module! :source -[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes -[INFO] -[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- -[INFO] -[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- -[INFO] Not executing Javadoc as the project is not a Java classpath-capable package -[INFO] -[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- -[ERROR] DOCKER> Error occurred during container startup, shutting down... -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD FAILURE -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 01:34 min -[INFO] Finished at: 2024-09-13T15:40:21+01:00 -[INFO] ------------------------------------------------------------------------ -[ERROR] Failed to execute goal io.fabric8:docker-maven-plugin:0.43.4:start (start) on project worker-languagedetection-container: Execution start of goal io.fabric8:docker-maven-plugin:0.43.4:start failed: Cannot resolve image dependencies for start order -[ERROR] Unresolved images: -[ERROR] * worker-languagedetection depends on config,webdav,sqs -[ERROR] -[ERROR] -> [Help 1] -[ERROR] -[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. -[ERROR] Re-run Maven using the -X switch to enable full debug logging. -[ERROR] -[ERROR] For more information about the errors and possible solutions, please read the following articles: -[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException -[INFO] Scanning for projects... -[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] -[INFO] Inspecting build with total of 1 modules... -[INFO] Installing Nexus Staging features: -[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin -[INFO] -[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- -[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT -[INFO] from pom.xml -[INFO] --------------------------------[ pom ]--------------------------------- -[INFO] -[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] -[INFO] -[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- -[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target -[INFO] -[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- -[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed -[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed -[INFO] -[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- -[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true -[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container -[INFO] Git info extracted in 262ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' -[INFO] -[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- -[INFO] Using plugin classloader, includes GMavenPlus and project classpath. -[INFO] Using Groovy 3.0.19 to perform execute. -[INFO] -[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- -[INFO] Updating license headers... -[INFO] -[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- -[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar -[INFO] -[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- -[INFO] Copying 2 resources from src/main/config to target/config-files -[INFO] -[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- -[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox -[INFO] DOCKER> -[INFO] DOCKER> ---> 6fd955f66c23 -[INFO] DOCKER> Step 2/4 : COPY maven /config/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 8be7948e3c01 -[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> ef52e370b90f -[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 1f97ff59e5f4 -[INFO] DOCKER> Successfully built 1f97ff59e5f4 -[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:1f97f -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Created docker-build.tar in 1 minute and 11 seconds -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 -[INFO] DOCKER> -[INFO] DOCKER> ---> 0f51baaf46f5 -[INFO] DOCKER> Step 2/4 : COPY maven /maven/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 91e7f56ef8cf -[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 002fc83963fa -[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 2adee4e4f048 -[INFO] DOCKER> Successfully built 2adee4e4f048 -[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Built image sha256:2adee -[INFO] -[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- -[INFO] Changes detected - recompiling the module! :source -[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes -[INFO] -[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- -[INFO] -[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- -[INFO] Not executing Javadoc as the project is not a Java classpath-capable package -[INFO] -[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container cfb1d6e99828 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. -14:43:13.902 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf -14:43:13.917 webdav> + getent passwd 33 -14:43:13.923 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin -14:43:13.924 webdav> + useradd -r webdav -u 33 -g 33 -14:43:13.957 webdav> useradd: UID 33 is not unique -14:43:13.958 webdav> + mkdir -p /srv/common/webdav -14:43:13.960 webdav> + chown 33 /srv/common/webdav -14:43:13.965 webdav> + trap _term SIGTERM -14:43:13.966 webdav> + pid=12 -14:43:13.966 webdav> + wait 12 -14:43:13.966 webdav> + /usr/sbin/apache2 -D FOREGROUND -14:43:14.010 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -14:43:14.014 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -14:43:14.016 webdav> [Fri Sep 13 14:43:14.016201 2024] [mpm_event:notice] [pid 12:tid 140119298836352] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations -14:43:14.016 webdav> [Fri Sep 13 14:43:14.016288 2024] [core:notice] [pid 12:tid 140119298836352] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' -14:43:14.064 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:14:43:14 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 161 ms -[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Start container 64910d2fa850 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waiting on url http://localhost:15672 with method HEAD for status 200..399. -14:43:18.242 rabbitmq> 2024-09-13 14:43:18.232976+00:00 [notice] <0.44.0> Application syslog exited with reason: stopped -14:43:18.242 rabbitmq> 2024-09-13 14:43:18.242023+00:00 [notice] <0.254.0> Logging: switching to configured handler(s); following messages may not be visible in this log output -14:43:18.244 rabbitmq> 2024-09-13 14:43:18.243216+00:00 [notice] <0.254.0> Logging: configured log handlers are now ACTIVE -14:43:18.257 rabbitmq> 2024-09-13 14:43:18.257204+00:00 [info] <0.254.0> ra: starting system quorum_queues -14:43:18.257 rabbitmq> 2024-09-13 14:43:18.257296+00:00 [info] <0.254.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/quorum/rabbit@64910d2fa850 -14:43:18.339 rabbitmq> 2024-09-13 14:43:18.339251+00:00 [info] <0.268.0> ra system 'quorum_queues' running pre init for 0 registered servers -14:43:18.354 rabbitmq> 2024-09-13 14:43:18.354427+00:00 [info] <0.269.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered -14:43:18.376 rabbitmq> 2024-09-13 14:43:18.375767+00:00 [notice] <0.274.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables -14:43:18.405 rabbitmq> 2024-09-13 14:43:18.405055+00:00 [info] <0.254.0> ra: starting system coordination -14:43:18.405 rabbitmq> 2024-09-13 14:43:18.405116+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/coordination/rabbit@64910d2fa850 -14:43:18.407 rabbitmq> 2024-09-13 14:43:18.407600+00:00 [info] <0.282.0> ra system 'coordination' running pre init for 0 registered servers -14:43:18.409 rabbitmq> 2024-09-13 14:43:18.409304+00:00 [info] <0.283.0> ra: meta data store initialised for system coordination. 0 record(s) recovered -14:43:18.409 rabbitmq> 2024-09-13 14:43:18.409568+00:00 [notice] <0.288.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables -14:43:18.417 rabbitmq> 2024-09-13 14:43:18.417556+00:00 [info] <0.254.0> ra: starting system coordination -14:43:18.418 rabbitmq> 2024-09-13 14:43:18.417618+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/coordination/rabbit@64910d2fa850 -14:43:18.574 rabbitmq> 2024-09-13 14:43:18.573792+00:00 [info] <0.254.0> Waiting for Khepri leader for 30000 ms, 9 retries left -14:43:18.594 rabbitmq> 2024-09-13 14:43:18.593764+00:00 [notice] <0.292.0> RabbitMQ metadata store: candidate -> leader in term: 1 machine version: 1 -14:43:18.603 rabbitmq> 2024-09-13 14:43:18.603463+00:00 [info] <0.254.0> Khepri leader elected -14:43:18.604 rabbitmq> 2024-09-13 14:43:18.603538+00:00 [info] <0.254.0> Waiting for Khepri projections for 30000 ms, 9 retries left -14:43:18.997 rabbitmq> 2024-09-13 14:43:18.997246+00:00 [info] <0.254.0> -14:43:18.997 rabbitmq> 2024-09-13 14:43:18.997246+00:00 [info] <0.254.0> Starting RabbitMQ 3.13.7 on Erlang 26.2.5.3 [jit] -14:43:18.997 rabbitmq> 2024-09-13 14:43:18.997246+00:00 [info] <0.254.0> Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries -14:43:18.997 rabbitmq> 2024-09-13 14:43:18.997246+00:00 [info] <0.254.0> Licensed under the MPL 2.0. Website: https://rabbitmq.com -14:43:18.998 rabbitmq> -14:43:18.998 rabbitmq> ## ## RabbitMQ 3.13.7 -14:43:18.998 rabbitmq> ## ## -14:43:18.998 rabbitmq> ########## Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries -14:43:18.998 rabbitmq> ###### ## -14:43:18.998 rabbitmq> ########## Licensed under the MPL 2.0. Website: https://rabbitmq.com -14:43:18.998 rabbitmq> -14:43:18.998 rabbitmq> Erlang: 26.2.5.3 [jit] -14:43:18.998 rabbitmq> TLS Library: OpenSSL - OpenSSL 3.1.7 3 Sep 2024 -14:43:18.998 rabbitmq> Release series support status: see https://www.rabbitmq.com/release-information -14:43:18.998 rabbitmq> -14:43:18.998 rabbitmq> Doc guides: https://www.rabbitmq.com/docs -14:43:18.998 rabbitmq> Support: https://www.rabbitmq.com/docs/contact -14:43:18.998 rabbitmq> Tutorials: https://www.rabbitmq.com/tutorials -14:43:18.998 rabbitmq> Monitoring: https://www.rabbitmq.com/docs/monitoring -14:43:18.998 rabbitmq> Upgrading: https://www.rabbitmq.com/docs/upgrade -14:43:18.998 rabbitmq> -14:43:18.998 rabbitmq> Logs: -14:43:18.998 rabbitmq> -14:43:18.998 rabbitmq> Config file(s): /etc/rabbitmq/conf.d/10-defaults.conf -14:43:18.998 rabbitmq> -14:43:19.001 rabbitmq> Starting broker...2024-09-13 14:43:19.001426+00:00 [info] <0.254.0> -14:43:19.001 rabbitmq> 2024-09-13 14:43:19.001426+00:00 [info] <0.254.0> node : rabbit@64910d2fa850 -14:43:19.001 rabbitmq> 2024-09-13 14:43:19.001426+00:00 [info] <0.254.0> home dir : /var/lib/rabbitmq -14:43:19.001 rabbitmq> 2024-09-13 14:43:19.001426+00:00 [info] <0.254.0> config file(s) : /etc/rabbitmq/conf.d/10-defaults.conf -14:43:19.001 rabbitmq> 2024-09-13 14:43:19.001426+00:00 [info] <0.254.0> cookie hash : 1pBFVfpaAgh681diLhMAcg== -14:43:19.001 rabbitmq> 2024-09-13 14:43:19.001426+00:00 [info] <0.254.0> log(s) : -14:43:19.001 rabbitmq> 2024-09-13 14:43:19.001426+00:00 [info] <0.254.0> data dir : /var/lib/rabbitmq/mnesia/rabbit@64910d2fa850 -14:43:19.394 rabbitmq> 2024-09-13 14:43:19.393839+00:00 [info] <0.254.0> Running boot step pre_boot defined by app rabbit -14:43:19.394 rabbitmq> 2024-09-13 14:43:19.393907+00:00 [info] <0.254.0> Running boot step rabbit_global_counters defined by app rabbit -14:43:19.394 rabbitmq> 2024-09-13 14:43:19.394105+00:00 [info] <0.254.0> Running boot step rabbit_osiris_metrics defined by app rabbit -14:43:19.394 rabbitmq> 2024-09-13 14:43:19.394190+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics defined by app rabbit -14:43:19.394 rabbitmq> 2024-09-13 14:43:19.394463+00:00 [info] <0.254.0> Running boot step rabbit_alarm defined by app rabbit -14:43:19.407 rabbitmq> 2024-09-13 14:43:19.406974+00:00 [info] <0.329.0> Memory high watermark set to 6399 MiB (6710412902 bytes) of 15998 MiB (16776032256 bytes) total -14:43:19.410 rabbitmq> 2024-09-13 14:43:19.410274+00:00 [info] <0.331.0> Enabling free disk space monitoring (disk free space: 969866067968, total memory: 16776032256) -14:43:19.411 rabbitmq> 2024-09-13 14:43:19.410335+00:00 [info] <0.331.0> Disk free limit set to 50MB -14:43:19.412 rabbitmq> 2024-09-13 14:43:19.412430+00:00 [info] <0.254.0> Running boot step code_server_cache defined by app rabbit -14:43:19.412 rabbitmq> 2024-09-13 14:43:19.412530+00:00 [info] <0.254.0> Running boot step file_handle_cache defined by app rabbit -14:43:19.420 rabbitmq> 2024-09-13 14:43:19.420278+00:00 [info] <0.334.0> Limiting to approx 1048479 file handles (943629 sockets) -14:43:19.420 rabbitmq> 2024-09-13 14:43:19.420451+00:00 [info] <0.335.0> FHC read buffering: OFF -14:43:19.420 rabbitmq> 2024-09-13 14:43:19.420493+00:00 [info] <0.335.0> FHC write buffering: ON -14:43:19.421 rabbitmq> 2024-09-13 14:43:19.421275+00:00 [info] <0.254.0> Running boot step worker_pool defined by app rabbit -14:43:19.421 rabbitmq> 2024-09-13 14:43:19.421393+00:00 [info] <0.315.0> Will use 4 processes for default worker pool -14:43:19.421 rabbitmq> 2024-09-13 14:43:19.421435+00:00 [info] <0.315.0> Starting worker pool 'worker_pool' with 4 processes in it -14:43:19.422 rabbitmq> 2024-09-13 14:43:19.421776+00:00 [info] <0.254.0> Running boot step database defined by app rabbit -14:43:19.422 rabbitmq> 2024-09-13 14:43:19.421976+00:00 [info] <0.254.0> Peer discovery: configured backend: rabbit_peer_discovery_classic_config -14:43:19.423 rabbitmq> 2024-09-13 14:43:19.423156+00:00 [notice] <0.316.0> Feature flags: attempt to enable `detailed_queues_endpoint`... -14:43:19.493 rabbitmq> 2024-09-13 14:43:19.493229+00:00 [notice] <0.316.0> Feature flags: `detailed_queues_endpoint` enabled -14:43:19.495 rabbitmq> 2024-09-13 14:43:19.493373+00:00 [notice] <0.316.0> Feature flags: attempt to enable `quorum_queue_non_voters`... -14:43:19.562 rabbitmq> 2024-09-13 14:43:19.562190+00:00 [notice] <0.316.0> Feature flags: `quorum_queue_non_voters` enabled -14:43:19.562 rabbitmq> 2024-09-13 14:43:19.562353+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_update_config_command`... -14:43:19.633 rabbitmq> 2024-09-13 14:43:19.632985+00:00 [notice] <0.316.0> Feature flags: `stream_update_config_command` enabled -14:43:19.634 rabbitmq> 2024-09-13 14:43:19.633183+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_filtering`... -14:43:19.704 rabbitmq> 2024-09-13 14:43:19.704580+00:00 [notice] <0.316.0> Feature flags: `stream_filtering` enabled -14:43:19.704 rabbitmq> 2024-09-13 14:43:19.704743+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_sac_coordinator_unblock_group`... -14:43:19.777 rabbitmq> 2024-09-13 14:43:19.776863+00:00 [notice] <0.316.0> Feature flags: `stream_sac_coordinator_unblock_group` enabled -14:43:19.777 rabbitmq> 2024-09-13 14:43:19.777075+00:00 [notice] <0.316.0> Feature flags: attempt to enable `restart_streams`... -14:43:19.847 rabbitmq> 2024-09-13 14:43:19.846998+00:00 [notice] <0.316.0> Feature flags: `restart_streams` enabled -14:43:19.848 rabbitmq> 2024-09-13 14:43:19.847279+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers`... -14:43:19.920 rabbitmq> 2024-09-13 14:43:19.919810+00:00 [notice] <0.316.0> Feature flags: `message_containers` enabled -14:43:19.920 rabbitmq> 2024-09-13 14:43:19.919933+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers_deaths_v2`... -14:43:19.990 rabbitmq> 2024-09-13 14:43:19.989755+00:00 [notice] <0.316.0> Feature flags: `message_containers_deaths_v2` enabled -14:43:19.990 rabbitmq> 2024-09-13 14:43:19.990389+00:00 [info] <0.254.0> DB: virgin node -> run peer discovery -14:43:19.990 rabbitmq> 2024-09-13 14:43:19.990458+00:00 [warning] <0.254.0> Classic peer discovery backend: list of nodes does not contain the local node [] -14:43:20.002 rabbitmq> 2024-09-13 14:43:20.002149+00:00 [notice] <0.44.0> Application mnesia exited with reason: stopped -14:43:20.335 rabbitmq> 2024-09-13 14:43:20.334804+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -14:43:20.335 rabbitmq> 2024-09-13 14:43:20.334931+00:00 [info] <0.254.0> Successfully synced tables from a peer -14:43:20.335 rabbitmq> 2024-09-13 14:43:20.335027+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -14:43:20.335 rabbitmq> 2024-09-13 14:43:20.335075+00:00 [info] <0.254.0> Successfully synced tables from a peer -14:43:20.361 rabbitmq> 2024-09-13 14:43:20.361349+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -14:43:20.361 rabbitmq> 2024-09-13 14:43:20.361493+00:00 [info] <0.254.0> Successfully synced tables from a peer -14:43:20.362 rabbitmq> 2024-09-13 14:43:20.361751+00:00 [info] <0.254.0> Running boot step tracking_metadata_store defined by app rabbit -14:43:20.362 rabbitmq> 2024-09-13 14:43:20.361887+00:00 [info] <0.558.0> Setting up a table for connection tracking on this node: tracked_connection -14:43:20.363 rabbitmq> 2024-09-13 14:43:20.361930+00:00 [info] <0.558.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost -14:43:20.363 rabbitmq> 2024-09-13 14:43:20.361989+00:00 [info] <0.558.0> Setting up a table for per-user connection counting on this node: tracked_connection_per_user -14:43:20.363 rabbitmq> 2024-09-13 14:43:20.362036+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel -14:43:20.364 rabbitmq> 2024-09-13 14:43:20.362084+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel_per_user -14:43:20.365 rabbitmq> 2024-09-13 14:43:20.362121+00:00 [info] <0.254.0> Running boot step networking_metadata_store defined by app rabbit -14:43:20.365 rabbitmq> 2024-09-13 14:43:20.362210+00:00 [info] <0.254.0> Running boot step feature_flags defined by app rabbit -14:43:20.365 rabbitmq> 2024-09-13 14:43:20.362350+00:00 [info] <0.254.0> Running boot step codec_correctness_check defined by app rabbit -14:43:20.365 rabbitmq> 2024-09-13 14:43:20.362373+00:00 [info] <0.254.0> Running boot step external_infrastructure defined by app rabbit -14:43:20.366 rabbitmq> 2024-09-13 14:43:20.362399+00:00 [info] <0.254.0> Running boot step rabbit_event defined by app rabbit -14:43:20.366 rabbitmq> 2024-09-13 14:43:20.362556+00:00 [info] <0.254.0> Running boot step rabbit_registry defined by app rabbit -14:43:20.366 rabbitmq> 2024-09-13 14:43:20.362645+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit -14:43:20.366 rabbitmq> 2024-09-13 14:43:20.362827+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit -14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363032+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit -14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363118+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_direct defined by app rabbit -14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363212+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit -14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363285+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_headers defined by app rabbit -14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363332+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_topic defined by app rabbit -14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363363+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit -14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363402+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit -14:43:20.366 rabbitmq> 2024-09-13 14:43:20.363441+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit -14:43:20.367 rabbitmq> 2024-09-13 14:43:20.363472+00:00 [info] <0.254.0> Running boot step rabbit_priority_queue defined by app rabbit -14:43:20.367 rabbitmq> 2024-09-13 14:43:20.363492+00:00 [info] <0.254.0> Priority queues enabled, real BQ is rabbit_variable_queue -14:43:20.370 rabbitmq> 2024-09-13 14:43:20.363521+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_client_local defined by app rabbit -14:43:20.370 rabbitmq> 2024-09-13 14:43:20.363575+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit -14:43:20.371 rabbitmq> 2024-09-13 14:43:20.363604+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_random defined by app rabbit -14:43:20.371 rabbitmq> 2024-09-13 14:43:20.363630+00:00 [info] <0.254.0> Running boot step kernel_ready defined by app rabbit -14:43:20.371 rabbitmq> 2024-09-13 14:43:20.363708+00:00 [info] <0.254.0> Running boot step rabbit_sysmon_minder defined by app rabbit -14:43:20.371 rabbitmq> 2024-09-13 14:43:20.363975+00:00 [info] <0.254.0> Running boot step rabbit_epmd_monitor defined by app rabbit -14:43:20.372 rabbitmq> 2024-09-13 14:43:20.369887+00:00 [info] <0.566.0> epmd monitor knows us, inter-node communication (distribution) port: 25672 -14:43:20.374 rabbitmq> 2024-09-13 14:43:20.370012+00:00 [info] <0.254.0> Running boot step guid_generator defined by app rabbit -14:43:20.378 rabbitmq> 2024-09-13 14:43:20.378264+00:00 [info] <0.254.0> Running boot step rabbit_node_monitor defined by app rabbit -14:43:20.378 rabbitmq> 2024-09-13 14:43:20.378519+00:00 [info] <0.570.0> Starting rabbit_node_monitor (in ignore mode) -14:43:20.379 rabbitmq> 2024-09-13 14:43:20.378632+00:00 [info] <0.254.0> Running boot step delegate_sup defined by app rabbit -14:43:20.379 rabbitmq> 2024-09-13 14:43:20.379115+00:00 [info] <0.254.0> Running boot step rabbit_memory_monitor defined by app rabbit -14:43:20.379 rabbitmq> 2024-09-13 14:43:20.379244+00:00 [info] <0.254.0> Running boot step rabbit_fifo_dlx_sup defined by app rabbit -14:43:20.379 rabbitmq> 2024-09-13 14:43:20.379295+00:00 [info] <0.254.0> Running boot step core_initialized defined by app rabbit -14:43:20.380 rabbitmq> 2024-09-13 14:43:20.379315+00:00 [info] <0.254.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit -14:43:20.380 rabbitmq> 2024-09-13 14:43:20.379373+00:00 [info] <0.254.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit -14:43:20.380 rabbitmq> 2024-09-13 14:43:20.379411+00:00 [info] <0.254.0> Running boot step rabbit_definitions_hashing defined by app rabbit -14:43:20.380 rabbitmq> 2024-09-13 14:43:20.379473+00:00 [info] <0.254.0> Running boot step rabbit_exchange_parameters defined by app rabbit -14:43:20.420 rabbitmq> 2024-09-13 14:43:20.420170+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit -14:43:20.421 rabbitmq> 2024-09-13 14:43:20.421079+00:00 [info] <0.254.0> Running boot step rabbit_policies defined by app rabbit -14:43:20.422 rabbitmq> 2024-09-13 14:43:20.421894+00:00 [info] <0.254.0> Running boot step rabbit_policy defined by app rabbit -14:43:20.423 rabbitmq> 2024-09-13 14:43:20.422029+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_validator defined by app rabbit -14:43:20.423 rabbitmq> 2024-09-13 14:43:20.422746+00:00 [info] <0.254.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit -14:43:20.424 rabbitmq> 2024-09-13 14:43:20.422887+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue defined by app rabbit -14:43:20.425 rabbitmq> 2024-09-13 14:43:20.423041+00:00 [info] <0.254.0> Running boot step rabbit_stream_coordinator defined by app rabbit -14:43:20.425 rabbitmq> 2024-09-13 14:43:20.423327+00:00 [info] <0.254.0> Running boot step rabbit_vhost_limit defined by app rabbit -14:43:20.426 rabbitmq> 2024-09-13 14:43:20.423527+00:00 [info] <0.254.0> Running boot step rabbit_federation_parameters defined by app rabbitmq_federation -14:43:20.428 rabbitmq> 2024-09-13 14:43:20.423710+00:00 [info] <0.254.0> Running boot step rabbit_federation_supervisor defined by app rabbitmq_federation -14:43:20.439 rabbitmq> 2024-09-13 14:43:20.439372+00:00 [info] <0.254.0> Running boot step rabbit_federation_queue defined by app rabbitmq_federation -14:43:20.440 rabbitmq> 2024-09-13 14:43:20.439570+00:00 [info] <0.254.0> Running boot step rabbit_federation_upstream_exchange defined by app rabbitmq_federation -14:43:20.440 rabbitmq> 2024-09-13 14:43:20.439627+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management -14:43:20.440 rabbitmq> 2024-09-13 14:43:20.439745+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent -14:43:20.440 rabbitmq> 2024-09-13 14:43:20.439801+00:00 [info] <0.254.0> Management plugin: using rates mode 'basic' -14:43:20.441 rabbitmq> 2024-09-13 14:43:20.440028+00:00 [info] <0.254.0> Running boot step recovery defined by app rabbit -14:43:20.455 rabbitmq> 2024-09-13 14:43:20.455171+00:00 [info] <0.254.0> Running boot step empty_db_check defined by app rabbit -14:43:20.455 rabbitmq> 2024-09-13 14:43:20.455231+00:00 [info] <0.254.0> Will seed default virtual host and user... -14:43:20.455 rabbitmq> 2024-09-13 14:43:20.455322+00:00 [info] <0.254.0> Adding vhost '/' (description: 'Default virtual host', tags: []) -14:43:20.515 rabbitmq> 2024-09-13 14:43:20.514668+00:00 [info] <0.630.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists -14:43:20.517 rabbitmq> 2024-09-13 14:43:20.516829+00:00 [info] <0.630.0> Setting segment_entry_count for vhost '/' with 0 queues to '2048' -14:43:20.535 rabbitmq> 2024-09-13 14:43:20.535307+00:00 [info] <0.630.0> Starting message stores for vhost '/' -14:43:20.535 rabbitmq> 2024-09-13 14:43:20.535525+00:00 [info] <0.639.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index -14:43:20.542 rabbitmq> 2024-09-13 14:43:20.542336+00:00 [info] <0.630.0> Started message store of type transient for vhost '/' -14:43:20.542 rabbitmq> 2024-09-13 14:43:20.542533+00:00 [info] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index -14:43:20.543 rabbitmq> 2024-09-13 14:43:20.543042+00:00 [warning] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch -14:43:20.544 rabbitmq> 2024-09-13 14:43:20.544215+00:00 [info] <0.630.0> Started message store of type persistent for vhost '/' -14:43:20.544 rabbitmq> 2024-09-13 14:43:20.544369+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_classic_queue took 27ms -14:43:20.544 rabbitmq> 2024-09-13 14:43:20.544411+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_quorum_queue took 0ms -14:43:20.544 rabbitmq> 2024-09-13 14:43:20.544483+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_stream_queue took 0ms -14:43:20.553 rabbitmq> 2024-09-13 14:43:20.552843+00:00 [info] <0.254.0> Created user 'guest' -14:43:20.560 rabbitmq> 2024-09-13 14:43:20.560248+00:00 [info] <0.254.0> Successfully set user tags for user 'guest' to [administrator] -14:43:20.568 rabbitmq> 2024-09-13 14:43:20.567770+00:00 [info] <0.254.0> Successfully set permissions for user 'guest' in virtual host '/' to '.*', '.*', '.*' -14:43:20.568 rabbitmq> 2024-09-13 14:43:20.567847+00:00 [info] <0.254.0> Running boot step rabbit_observer_cli defined by app rabbit -14:43:20.568 rabbitmq> 2024-09-13 14:43:20.567951+00:00 [info] <0.254.0> Running boot step rabbit_looking_glass defined by app rabbit -14:43:20.568 rabbitmq> 2024-09-13 14:43:20.568012+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics_gc defined by app rabbit -14:43:20.569 rabbitmq> 2024-09-13 14:43:20.568161+00:00 [info] <0.254.0> Running boot step background_gc defined by app rabbit -14:43:20.569 rabbitmq> 2024-09-13 14:43:20.568801+00:00 [info] <0.254.0> Running boot step routing_ready defined by app rabbit -14:43:20.569 rabbitmq> 2024-09-13 14:43:20.568923+00:00 [info] <0.254.0> Running boot step pre_flight defined by app rabbit -14:43:20.569 rabbitmq> 2024-09-13 14:43:20.568977+00:00 [info] <0.254.0> Running boot step notify_cluster defined by app rabbit -14:43:20.569 rabbitmq> 2024-09-13 14:43:20.569011+00:00 [info] <0.254.0> Running boot step networking defined by app rabbit -14:43:20.570 rabbitmq> 2024-09-13 14:43:20.569045+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue_periodic_membership_reconciliation defined by app rabbit -14:43:20.572 rabbitmq> 2024-09-13 14:43:20.569188+00:00 [info] <0.254.0> Running boot step definition_import_worker_pool defined by app rabbit -14:43:20.573 rabbitmq> 2024-09-13 14:43:20.569280+00:00 [info] <0.315.0> Starting worker pool 'definition_import_pool' with 4 processes in it -14:43:20.574 rabbitmq> 2024-09-13 14:43:20.570268+00:00 [info] <0.254.0> Running boot step cluster_name defined by app rabbit -14:43:20.574 rabbitmq> 2024-09-13 14:43:20.572173+00:00 [info] <0.254.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-STtXdSsu2MU_vs-W0QIf8Q' -14:43:20.579 rabbitmq> 2024-09-13 14:43:20.579623+00:00 [info] <0.254.0> Running boot step virtual_host_reconciliation defined by app rabbit -14:43:20.580 rabbitmq> 2024-09-13 14:43:20.579955+00:00 [info] <0.254.0> Running boot step direct_client defined by app rabbit -14:43:20.580 rabbitmq> 2024-09-13 14:43:20.580070+00:00 [info] <0.254.0> Running boot step rabbit_federation_exchange defined by app rabbitmq_federation -14:43:20.581 rabbitmq> 2024-09-13 14:43:20.580218+00:00 [info] <0.254.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management -14:43:20.581 rabbitmq> 2024-09-13 14:43:20.581169+00:00 [info] <0.680.0> Resetting node maintenance status -14:43:20.763 rabbitmq> 2024-09-13 14:43:20.762767+00:00 [warning] <0.709.0> Deprecated features: `management_metrics_collection`: Feature `management_metrics_collection` is deprecated. -14:43:20.763 rabbitmq> 2024-09-13 14:43:20.762767+00:00 [warning] <0.709.0> By default, this feature can still be used for now. -14:43:20.763 rabbitmq> 2024-09-13 14:43:20.762767+00:00 [warning] <0.709.0> Its use will not be permitted by default in a future minor RabbitMQ version and the feature will be removed from a future major RabbitMQ version; actual versions to be determined. -14:43:20.763 rabbitmq> 2024-09-13 14:43:20.762767+00:00 [warning] <0.709.0> To continue using this feature when it is not permitted by default, set the following parameter in your configuration: -14:43:20.763 rabbitmq> 2024-09-13 14:43:20.762767+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = true" -14:43:20.763 rabbitmq> 2024-09-13 14:43:20.762767+00:00 [warning] <0.709.0> To test RabbitMQ as if the feature was removed, set this in your configuration: -14:43:20.763 rabbitmq> 2024-09-13 14:43:20.762767+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = false" -14:43:23.883 rabbitmq> 2024-09-13 14:43:23.883273+00:00 [info] <0.746.0> Management plugin: HTTP (non-TLS) listener started on port 15672 -14:43:23.883 rabbitmq> 2024-09-13 14:43:23.883402+00:00 [info] <0.776.0> Statistics database started. -14:43:23.884 rabbitmq> 2024-09-13 14:43:23.883478+00:00 [info] <0.775.0> Starting worker pool 'management_worker_pool' with 3 processes in it -14:43:23.891 rabbitmq> 2024-09-13 14:43:23.891012+00:00 [info] <0.794.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692 -14:43:23.891 rabbitmq> 2024-09-13 14:43:23.891194+00:00 [info] <0.680.0> Ready to start client connection listeners -14:43:23.893 rabbitmq> 2024-09-13 14:43:23.892946+00:00 [info] <0.838.0> started TCP listener on [::]:5672 -14:43:23.985 rabbitmq> completed with 5 plugins. -14:43:23.985 rabbitmq> 2024-09-13 14:43:23.985536+00:00 [info] <0.680.0> Server startup complete; 5 plugins started. -[INFO] DOCKER> Pattern 'Server startup complete' matched for container 64910d2fa850 -14:43:23.985 rabbitmq> 2024-09-13 14:43:23.985536+00:00 [info] <0.680.0> * rabbitmq_prometheus -14:43:23.985 rabbitmq> 2024-09-13 14:43:23.985536+00:00 [info] <0.680.0> * rabbitmq_federation -14:43:23.985 rabbitmq> 2024-09-13 14:43:23.985536+00:00 [info] <0.680.0> * rabbitmq_management -14:43:23.985 rabbitmq> 2024-09-13 14:43:23.985536+00:00 [info] <0.680.0> * rabbitmq_management_agent -14:43:23.985 rabbitmq> 2024-09-13 14:43:23.985536+00:00 [info] <0.680.0> * rabbitmq_web_dispatch -14:43:23.999 rabbitmq> 2024-09-13 14:43:23.999021+00:00 [info] <0.9.0> Time to start RabbitMQ: 9165 ms -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waited on url http://localhost:15672 and on log out 'Server startup complete' 9565 ms -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Start container 1d0f075b1151 -14:43:26.062 sqs> -14:43:26.062 sqs> LocalStack version: 3.7.3.dev19 -14:43:26.062 sqs> LocalStack build date: 2024-09-13 -14:43:26.062 sqs> LocalStack build git hash: cb81582d8 -14:43:26.062 sqs> -14:43:26.855 sqs> Ready. -[INFO] DOCKER> Pattern 'Ready.' matched for container 1d0f075b1151 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Waited on log out 'Ready.' 2518 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container c007046138ee -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Start container 8656afca43a6 -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. -14:43:27.954 worker-languagedetection> [2024-09-13 14:43:27.952Z #007.??? INFO - - ] startup.sh: Running startup scripts... -14:43:27.958 worker-languagedetection> [2024-09-13 14:43:27.957Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -14:43:27.969 worker-languagedetection> [2024-09-13 14:43:27.967Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -14:43:27.972 worker-languagedetection> [2024-09-13 14:43:27.971Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -14:43:27.981 worker-languagedetection> [2024-09-13 14:43:27.979Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -14:43:27.983 worker-languagedetection> [2024-09-13 14:43:27.982Z #007.??? INFO - - ] startup.sh: Startup scripts completed -14:43:27.984 worker-languagedetection> [2024-09-13 14:43:27.984Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -14:43:28.671 worker-languagedetection> 14:43:28,417 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -14:43:28.671 worker-languagedetection> 14:43:28,418 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -14:43:28.671 worker-languagedetection> 14:43:28,418 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -14:43:28.671 worker-languagedetection> 14:43:28,420 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -14:43:28.671 worker-languagedetection> 14:43:28,426 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -14:43:28.671 worker-languagedetection> 14:43:28,427 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -14:43:28.671 worker-languagedetection> 14:43:28,437 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 8 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -14:43:28.671 worker-languagedetection> 14:43:28,437 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -14:43:28.671 worker-languagedetection> 14:43:28,438 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -14:43:28.671 worker-languagedetection> 14:43:28,438 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -14:43:28.671 worker-languagedetection> 14:43:28,443 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -14:43:28.671 worker-languagedetection> 14:43:28,452 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -14:43:28.671 worker-languagedetection> 14:43:28,527 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -14:43:28.671 worker-languagedetection> 14:43:28,527 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -14:43:28.671 worker-languagedetection> 14:43:28,527 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -14:43:28.671 worker-languagedetection> 14:43:28,593 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -14:43:28.671 worker-languagedetection> 14:43:28,593 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -14:43:28.671 worker-languagedetection> 14:43:28,593 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -14:43:28.671 worker-languagedetection> 14:43:28,596 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -14:43:28.671 worker-languagedetection> 14:43:28,596 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -14:43:28.671 worker-languagedetection> 14:43:28,606 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -14:43:28.671 worker-languagedetection> 14:43:28,612 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -14:43:28.671 worker-languagedetection> 14:43:28,652 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -14:43:28.671 worker-languagedetection> 14:43:28,656 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -14:43:28.671 worker-languagedetection> 14:43:28,656 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -14:43:28.671 worker-languagedetection> 14:43:28,657 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -14:43:28.671 worker-languagedetection> 14:43:28,657 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -14:43:28.672 worker-languagedetection> 14:43:28,658 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -14:43:28.672 worker-languagedetection> 14:43:28,658 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -14:43:28.672 worker-languagedetection> 14:43:28,659 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -14:43:28.672 worker-languagedetection> 14:43:28,659 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 221 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY -14:43:28.672 worker-languagedetection> -14:43:28.976 worker-languagedetection> [2024-09-13 14:43:28.942Z #619.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -14:43:30.105 worker-languagedetection> [2024-09-13 14:43:30.104Z #619.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -14:43:30.108 worker-languagedetection> [2024-09-13 14:43:30.107Z #619.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -14:43:30.109 worker-languagedetection> [2024-09-13 14:43:30.108Z #619.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -14:43:30.132 worker-languagedetection> [2024-09-13 14:43:30.131Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -14:43:30.135 worker-languagedetection> [2024-09-13 14:43:30.134Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -14:43:30.136 worker-languagedetection> [2024-09-13 14:43:30.135Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -14:43:30.139 worker-languagedetection> [2024-09-13 14:43:30.138Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -14:43:30.149 worker-languagedetection> [2024-09-13 14:43:30.149Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -14:43:30.151 worker-languagedetection> [2024-09-13 14:43:30.151Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -14:43:30.155 worker-languagedetection> [2024-09-13 14:43:30.155Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -14:43:30.217 worker-languagedetection> [2024-09-13 14:43:30.216Z #619.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider -14:43:30.261 worker-languagedetection> [2024-09-13 14:43:30.256Z #619.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} -14:43:30.394 worker-languagedetection> [2024-09-13 14:43:30.394Z #619.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@44e93c1f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -14:43:30.394 worker-languagedetection> [2024-09-13 14:43:30.394Z #619.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@42373389{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -14:43:30.396 worker-languagedetection> [2024-09-13 14:43:30.396Z #619.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS -14:43:30.405 worker-languagedetection> [2024-09-13 14:43:30.404Z #619.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. -14:43:30.420 worker-languagedetection> [2024-09-13 14:43:30.420Z #619.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE -14:43:30.424 worker-languagedetection> [2024-09-13 14:43:30.424Z #619.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY -14:43:30.425 worker-languagedetection> [2024-09-13 14:43:30.424Z #619.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY -14:43:30.426 worker-languagedetection> [2024-09-13 14:43:30.425Z #619.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY -14:43:30.427 worker-languagedetection> [2024-09-13 14:43:30.426Z #619.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE -14:43:30.445 worker-languagedetection> [2024-09-13 14:43:30.445Z #619.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY -14:43:30.446 worker-languagedetection> [2024-09-13 14:43:30.446Z #619.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE -14:43:30.449 worker-languagedetection> -14:43:30.822 worker-languagedetection> [2024-09-13 14:43:30.822Z #619.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} -14:43:30.823 worker-languagedetection> [2024-09-13 14:43:30.823Z #619.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@193bb809{/,null,AVAILABLE} -14:43:30.827 worker-languagedetection> [2024-09-13 14:43:30.827Z #619.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} -14:43:30.828 worker-languagedetection> [2024-09-13 14:43:30.828Z #619.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@131a7516{/,null,AVAILABLE} -14:43:30.835 worker-languagedetection> [2024-09-13 14:43:30.835Z #619.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@44e93c1f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -14:43:30.837 worker-languagedetection> [2024-09-13 14:43:30.836Z #619.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@42373389{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -14:43:30.839 worker-languagedetection> [2024-09-13 14:43:30.838Z #619.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@27d33393{STARTING}[11.0.23,sto=30000] @2827ms -14:43:30.908 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:30 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 13 -14:43:31.403 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:31 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 -14:43:31.907 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:31 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:32.416 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:32 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:32.921 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:32 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:33.433 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:33 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:33.946 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:33 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 -14:43:34.450 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:34 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:34.959 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:34 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:35.464 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:43:35.970 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:43:36.475 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:36.979 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:43:37.486 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:37.995 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:38.499 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:43:39.004 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:39.511 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:40.024 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:43:40.530 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:41.043 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:43:41.547 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:42.053 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:42.565 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:43:43.077 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 -14:43:43.582 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:44.086 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:44.595 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:45.100 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:45.430 worker-languagedetection> [2024-09-13 14:43:45.429Z #619.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE -14:43:45.606 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 -14:43:46.112 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:43:46.479 worker-languagedetection> [2024-09-13 14:43:46.479Z #619.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE -14:43:46.479 worker-languagedetection> [2024-09-13 14:43:46.479Z #619.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE -14:43:46.480 worker-languagedetection> [2024-09-13 14:43:46.479Z #619.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY -14:43:46.482 worker-languagedetection> [2024-09-13 14:43:46.481Z #619.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY -14:43:46.482 worker-languagedetection> [2024-09-13 14:43:46.481Z #619.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY -14:43:46.482 worker-languagedetection> [2024-09-13 14:43:46.481Z #619.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waited on url http://localhost:8082/health-check?type=READY 18689 ms -14:43:46.625 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:43:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -[INFO] -[INFO] --- failsafe:3.1.2:integration-test (sqs-implementation-testing) @ worker-languagedetection-container --- -[INFO] Tests are skipped. -[INFO] -[INFO] --- failsafe:3.1.2:integration-test (rabbit-implementation-testing) @ worker-languagedetection-container --- -[INFO] Tests are skipped. -[INFO] -[INFO] --- docker:0.43.4:stop (stop) @ worker-languagedetection-container --- -14:43:46.814 worker-languagedetection> [2024-09-13 14:43:46.813Z #619.033 INFO - - ] o.eclipse.jetty.server.Server: Stopped Server@27d33393{STOPPING}[11.0.23,sto=30000] -14:43:46.815 worker-languagedetection> [2024-09-13 14:43:46.814Z #619.033 INFO - - ] o.eclipse.jetty.server.Server: Shutdown Server@27d33393{STOPPING}[11.0.23,sto=30000] -14:43:46.818 worker-languagedetection> [2024-09-13 14:43:46.817Z #619.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped application@44e93c1f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -14:43:46.820 worker-languagedetection> [2024-09-13 14:43:46.820Z #619.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped admin@42373389{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -14:43:46.822 worker-languagedetection> [2024-09-13 14:43:46.822Z #619.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@131a7516{/,null,STOPPED} -14:43:46.830 worker-languagedetection> [2024-09-13 14:43:46.829Z #619.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@193bb809{/,null,STOPPED} -14:43:46.832 worker-languagedetection> [2024-09-13 14:43:46.832Z #619.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stop requested, allowing in-progress tasks to complete. -14:43:46.833 worker-languagedetection> [2024-09-13 14:43:46.832Z #619.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stopped. -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Stop and removed container 8656afca43a6 after 0 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container c007046138ee after 0 ms -14:43:48.492 sqs> Localstack runtime received signal 15 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Stop and removed container 1d0f075b1151 after 0 ms -14:43:54.492 rabbitmq> 2024-09-13 14:43:54.492278+00:00 [notice] <0.64.0> SIGTERM received - shutting down -14:43:54.492 rabbitmq> 2024-09-13 14:43:54.492278+00:00 [notice] <0.64.0> -14:43:54.494 rabbitmq> 2024-09-13 14:43:54.493976+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_prometheus_tls -14:43:54.500 rabbitmq> 2024-09-13 14:43:54.498855+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_management_tls -14:43:54.510 rabbitmq> 2024-09-13 14:43:54.509617+00:00 [info] <0.838.0> stopped TCP listener on [::]:5672 -14:43:54.511 rabbitmq> 2024-09-13 14:43:54.510980+00:00 [info] <0.630.0> Virtual host '/' is stopping -14:43:54.511 rabbitmq> 2024-09-13 14:43:54.511163+00:00 [info] <0.846.0> Closing all connections in vhost '/' on node 'rabbit@64910d2fa850' because the vhost is stopping -14:43:54.511 rabbitmq> 2024-09-13 14:43:54.511275+00:00 [info] <0.643.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' -14:43:54.523 rabbitmq> 2024-09-13 14:43:54.522863+00:00 [info] <0.643.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' is stopped -14:43:54.523 rabbitmq> 2024-09-13 14:43:54.523253+00:00 [info] <0.639.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' -14:43:54.533 rabbitmq> 2024-09-13 14:43:54.533370+00:00 [info] <0.639.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@64910d2fa850/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' is stopped -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Stop and removed container 64910d2fa850 after 0 ms -14:43:56.821 webdav> Caught SIGTERM signal! -14:43:56.821 webdav> ++ _term -14:43:56.821 webdav> ++ echo 'Caught SIGTERM signal!' -14:43:56.821 webdav> ++ kill -TERM '' -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container cfb1d6e99828 after 0 ms -[INFO] -[INFO] --- license:4.3:check (check-license-headers) @ worker-languagedetection-container --- -[INFO] Checking licenses... -[INFO] -[INFO] --- dependency:3.6.0:analyze-only (check-dependencies) @ worker-languagedetection-container --- -[INFO] Skipping pom project -[INFO] -[INFO] --- duplicate-finder:2.0.1:check (deepcheck-dependencies) @ worker-languagedetection-container --- -[INFO] Ignoring POM project! -[INFO] -[INFO] --- failsafe:3.1.2:verify (sqs-implementation-testing) @ worker-languagedetection-container --- -[INFO] Tests are skipped. -[INFO] -[INFO] --- failsafe:3.1.2:verify (rabbit-implementation-testing) @ worker-languagedetection-container --- -[INFO] Tests are skipped. -[INFO] -[INFO] --- install:3.1.1:install (default-install) @ worker-languagedetection-container --- -[INFO] Skipping artifact installation -[INFO] -[INFO] --- docker-versions:1.0.0-29:depopulate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD SUCCESS -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 02:23 min -[INFO] Finished at: 2024-09-13T15:43:59+01:00 -[INFO] ------------------------------------------------------------------------ -[INFO] Scanning for projects... -[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] -[INFO] Inspecting build with total of 1 modules... -[INFO] Installing Nexus Staging features: -[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin -[INFO] -[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- -[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT -[INFO] from pom.xml -[INFO] --------------------------------[ pom ]--------------------------------- -[INFO] -[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest] -[INFO] -[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- -[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target -[INFO] -[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- -[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed -[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed -[INFO] -[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- -[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true -[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container -[INFO] Git info extracted in 317ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' -[INFO] -[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- -[INFO] Using plugin classloader, includes GMavenPlus and project classpath. -[INFO] Using Groovy 3.0.19 to perform execute. -[INFO] -[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- -[INFO] Updating license headers... -[INFO] -[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- -[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar -[INFO] -[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- -[INFO] Copying 2 resources from src/main/config to target/config-files -[INFO] -[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- -[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox -[INFO] DOCKER> -[INFO] DOCKER> ---> 6fd955f66c23 -[INFO] DOCKER> Step 2/4 : COPY maven /config/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 8be7948e3c01 -[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> ef52e370b90f -[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 1f97ff59e5f4 -[INFO] DOCKER> Successfully built 1f97ff59e5f4 -[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:1f97f -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Created docker-build.tar in 1 minute and 8 seconds -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 -[INFO] DOCKER> -[INFO] DOCKER> ---> 0f51baaf46f5 -[INFO] DOCKER> Step 2/4 : COPY maven /maven/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 91e7f56ef8cf -[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 002fc83963fa -[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 2adee4e4f048 -[INFO] DOCKER> Successfully built 2adee4e4f048 -[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Built image sha256:2adee -[INFO] -[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- -[INFO] Changes detected - recompiling the module! :source -[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes -[INFO] -[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- -[INFO] -[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- -[INFO] Not executing Javadoc as the project is not a Java classpath-capable package -[INFO] -[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container 131edc5d7f6c -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. -14:48:20.548 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf -14:48:20.550 webdav> + getent passwd 33 -14:48:20.551 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin -14:48:20.551 webdav> + useradd -r webdav -u 33 -g 33 -14:48:20.591 webdav> useradd: UID 33 is not unique -14:48:20.592 webdav> + mkdir -p /srv/common/webdav -14:48:20.594 webdav> + chown 33 /srv/common/webdav -14:48:20.595 webdav> + trap _term SIGTERM -14:48:20.596 webdav> + pid=12 -14:48:20.596 webdav> + wait 12 -14:48:20.596 webdav> + /usr/sbin/apache2 -D FOREGROUND -14:48:20.612 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -14:48:20.617 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -14:48:20.621 webdav> [Fri Sep 13 14:48:20.621790 2024] [mpm_event:notice] [pid 12:tid 139651234948992] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations -14:48:20.622 webdav> [Fri Sep 13 14:48:20.622094 2024] [core:notice] [pid 12:tid 139651234948992] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' -14:48:20.696 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:14:48:20 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" -[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 105 ms -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Start container 6a79a46cf398 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waiting on url http://localhost:15672 with method HEAD for status 200..399. -14:48:24.327 rabbitmq> 2024-09-13 14:48:24.318736+00:00 [notice] <0.44.0> Application syslog exited with reason: stopped -14:48:24.327 rabbitmq> 2024-09-13 14:48:24.327088+00:00 [notice] <0.254.0> Logging: switching to configured handler(s); following messages may not be visible in this log output -14:48:24.327 rabbitmq> 2024-09-13 14:48:24.327631+00:00 [notice] <0.254.0> Logging: configured log handlers are now ACTIVE -14:48:24.340 rabbitmq> 2024-09-13 14:48:24.340504+00:00 [info] <0.254.0> ra: starting system quorum_queues -14:48:24.341 rabbitmq> 2024-09-13 14:48:24.340602+00:00 [info] <0.254.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@6a79a46cf398/quorum/rabbit@6a79a46cf398 -14:48:24.423 rabbitmq> 2024-09-13 14:48:24.423550+00:00 [info] <0.268.0> ra system 'quorum_queues' running pre init for 0 registered servers -14:48:24.439 rabbitmq> 2024-09-13 14:48:24.438736+00:00 [info] <0.269.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered -14:48:24.456 rabbitmq> 2024-09-13 14:48:24.456006+00:00 [notice] <0.274.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables -14:48:24.481 rabbitmq> 2024-09-13 14:48:24.481248+00:00 [info] <0.254.0> ra: starting system coordination -14:48:24.481 rabbitmq> 2024-09-13 14:48:24.481308+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@6a79a46cf398/coordination/rabbit@6a79a46cf398 -14:48:24.484 rabbitmq> 2024-09-13 14:48:24.484138+00:00 [info] <0.282.0> ra system 'coordination' running pre init for 0 registered servers -14:48:24.485 rabbitmq> 2024-09-13 14:48:24.485497+00:00 [info] <0.283.0> ra: meta data store initialised for system coordination. 0 record(s) recovered -14:48:24.486 rabbitmq> 2024-09-13 14:48:24.485750+00:00 [notice] <0.288.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables -14:48:24.495 rabbitmq> 2024-09-13 14:48:24.495108+00:00 [info] <0.254.0> ra: starting system coordination -14:48:24.495 rabbitmq> 2024-09-13 14:48:24.495170+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@6a79a46cf398/coordination/rabbit@6a79a46cf398 -14:48:24.618 rabbitmq> 2024-09-13 14:48:24.617643+00:00 [info] <0.254.0> Waiting for Khepri leader for 30000 ms, 9 retries left -14:48:24.641 rabbitmq> 2024-09-13 14:48:24.641209+00:00 [notice] <0.292.0> RabbitMQ metadata store: candidate -> leader in term: 1 machine version: 1 -14:48:24.654 rabbitmq> 2024-09-13 14:48:24.653744+00:00 [info] <0.254.0> Khepri leader elected -14:48:24.654 rabbitmq> 2024-09-13 14:48:24.653859+00:00 [info] <0.254.0> Waiting for Khepri projections for 30000 ms, 9 retries left -14:48:25.081 rabbitmq> 2024-09-13 14:48:25.081050+00:00 [info] <0.254.0> -14:48:25.081 rabbitmq> 2024-09-13 14:48:25.081050+00:00 [info] <0.254.0> Starting RabbitMQ 3.13.7 on Erlang 26.2.5.3 [jit] -14:48:25.081 rabbitmq> 2024-09-13 14:48:25.081050+00:00 [info] <0.254.0> Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries -14:48:25.081 rabbitmq> 2024-09-13 14:48:25.081050+00:00 [info] <0.254.0> Licensed under the MPL 2.0. Website: https://rabbitmq.com -14:48:25.083 rabbitmq> -14:48:25.083 rabbitmq> ## ## RabbitMQ 3.13.7 -14:48:25.083 rabbitmq> ## ## -14:48:25.083 rabbitmq> ########## Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries -14:48:25.083 rabbitmq> ###### ## -14:48:25.083 rabbitmq> ########## Licensed under the MPL 2.0. Website: https://rabbitmq.com -14:48:25.083 rabbitmq> -14:48:25.083 rabbitmq> Erlang: 26.2.5.3 [jit] -14:48:25.083 rabbitmq> TLS Library: OpenSSL - OpenSSL 3.1.7 3 Sep 2024 -14:48:25.083 rabbitmq> Release series support status: see https://www.rabbitmq.com/release-information -14:48:25.083 rabbitmq> -14:48:25.083 rabbitmq> Doc guides: https://www.rabbitmq.com/docs -14:48:25.083 rabbitmq> Support: https://www.rabbitmq.com/docs/contact -14:48:25.083 rabbitmq> Tutorials: https://www.rabbitmq.com/tutorials -14:48:25.083 rabbitmq> Monitoring: https://www.rabbitmq.com/docs/monitoring -14:48:25.083 rabbitmq> Upgrading: https://www.rabbitmq.com/docs/upgrade -14:48:25.083 rabbitmq> -14:48:25.083 rabbitmq> Logs: -14:48:25.083 rabbitmq> -14:48:25.083 rabbitmq> Config file(s): /etc/rabbitmq/conf.d/10-defaults.conf -14:48:25.083 rabbitmq> -14:48:25.086 rabbitmq> Starting broker...2024-09-13 14:48:25.084190+00:00 [info] <0.254.0> -14:48:25.086 rabbitmq> 2024-09-13 14:48:25.084190+00:00 [info] <0.254.0> node : rabbit@6a79a46cf398 -14:48:25.086 rabbitmq> 2024-09-13 14:48:25.084190+00:00 [info] <0.254.0> home dir : /var/lib/rabbitmq -14:48:25.086 rabbitmq> 2024-09-13 14:48:25.084190+00:00 [info] <0.254.0> config file(s) : /etc/rabbitmq/conf.d/10-defaults.conf -14:48:25.086 rabbitmq> 2024-09-13 14:48:25.084190+00:00 [info] <0.254.0> cookie hash : /BHjxXeJNknZ/mDleoMO8Q== -14:48:25.086 rabbitmq> 2024-09-13 14:48:25.084190+00:00 [info] <0.254.0> log(s) : -14:48:25.086 rabbitmq> 2024-09-13 14:48:25.084190+00:00 [info] <0.254.0> data dir : /var/lib/rabbitmq/mnesia/rabbit@6a79a46cf398 -14:48:25.556 rabbitmq> 2024-09-13 14:48:25.555679+00:00 [info] <0.254.0> Running boot step pre_boot defined by app rabbit -14:48:25.556 rabbitmq> 2024-09-13 14:48:25.555756+00:00 [info] <0.254.0> Running boot step rabbit_global_counters defined by app rabbit -14:48:25.557 rabbitmq> 2024-09-13 14:48:25.556082+00:00 [info] <0.254.0> Running boot step rabbit_osiris_metrics defined by app rabbit -14:48:25.557 rabbitmq> 2024-09-13 14:48:25.556159+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics defined by app rabbit -14:48:25.557 rabbitmq> 2024-09-13 14:48:25.556500+00:00 [info] <0.254.0> Running boot step rabbit_alarm defined by app rabbit -14:48:25.572 rabbitmq> 2024-09-13 14:48:25.572481+00:00 [info] <0.329.0> Memory high watermark set to 6399 MiB (6710412902 bytes) of 15998 MiB (16776032256 bytes) total -14:48:25.577 rabbitmq> 2024-09-13 14:48:25.576938+00:00 [info] <0.331.0> Enabling free disk space monitoring (disk free space: 969865031680, total memory: 16776032256) -14:48:25.577 rabbitmq> 2024-09-13 14:48:25.577013+00:00 [info] <0.331.0> Disk free limit set to 50MB -14:48:25.579 rabbitmq> 2024-09-13 14:48:25.579637+00:00 [info] <0.254.0> Running boot step code_server_cache defined by app rabbit -14:48:25.580 rabbitmq> 2024-09-13 14:48:25.579745+00:00 [info] <0.254.0> Running boot step file_handle_cache defined by app rabbit -14:48:25.591 rabbitmq> 2024-09-13 14:48:25.590933+00:00 [info] <0.334.0> Limiting to approx 1048479 file handles (943629 sockets) -14:48:25.591 rabbitmq> 2024-09-13 14:48:25.591115+00:00 [info] <0.335.0> FHC read buffering: OFF -14:48:25.591 rabbitmq> 2024-09-13 14:48:25.591199+00:00 [info] <0.335.0> FHC write buffering: ON -14:48:25.592 rabbitmq> 2024-09-13 14:48:25.591756+00:00 [info] <0.254.0> Running boot step worker_pool defined by app rabbit -14:48:25.592 rabbitmq> 2024-09-13 14:48:25.592007+00:00 [info] <0.315.0> Will use 4 processes for default worker pool -14:48:25.593 rabbitmq> 2024-09-13 14:48:25.592075+00:00 [info] <0.315.0> Starting worker pool 'worker_pool' with 4 processes in it -14:48:25.593 rabbitmq> 2024-09-13 14:48:25.592449+00:00 [info] <0.254.0> Running boot step database defined by app rabbit -14:48:25.593 rabbitmq> 2024-09-13 14:48:25.592915+00:00 [info] <0.254.0> Peer discovery: configured backend: rabbit_peer_discovery_classic_config -14:48:25.595 rabbitmq> 2024-09-13 14:48:25.594819+00:00 [notice] <0.316.0> Feature flags: attempt to enable `detailed_queues_endpoint`... -14:48:25.685 rabbitmq> 2024-09-13 14:48:25.684709+00:00 [notice] <0.316.0> Feature flags: `detailed_queues_endpoint` enabled -14:48:25.685 rabbitmq> 2024-09-13 14:48:25.684860+00:00 [notice] <0.316.0> Feature flags: attempt to enable `quorum_queue_non_voters`... -14:48:25.764 rabbitmq> 2024-09-13 14:48:25.763746+00:00 [notice] <0.316.0> Feature flags: `quorum_queue_non_voters` enabled -14:48:25.764 rabbitmq> 2024-09-13 14:48:25.763919+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_update_config_command`... -14:48:25.839 rabbitmq> 2024-09-13 14:48:25.839231+00:00 [notice] <0.316.0> Feature flags: `stream_update_config_command` enabled -14:48:25.839 rabbitmq> 2024-09-13 14:48:25.839385+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_filtering`... -14:48:25.913 rabbitmq> 2024-09-13 14:48:25.913206+00:00 [notice] <0.316.0> Feature flags: `stream_filtering` enabled -14:48:25.915 rabbitmq> 2024-09-13 14:48:25.913341+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_sac_coordinator_unblock_group`... -14:48:25.986 rabbitmq> 2024-09-13 14:48:25.985930+00:00 [notice] <0.316.0> Feature flags: `stream_sac_coordinator_unblock_group` enabled -14:48:25.986 rabbitmq> 2024-09-13 14:48:25.986075+00:00 [notice] <0.316.0> Feature flags: attempt to enable `restart_streams`... -14:48:26.056 rabbitmq> 2024-09-13 14:48:26.056457+00:00 [notice] <0.316.0> Feature flags: `restart_streams` enabled -14:48:26.057 rabbitmq> 2024-09-13 14:48:26.056708+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers`... -14:48:26.126 rabbitmq> 2024-09-13 14:48:26.126033+00:00 [notice] <0.316.0> Feature flags: `message_containers` enabled -14:48:26.127 rabbitmq> 2024-09-13 14:48:26.126185+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers_deaths_v2`... -14:48:26.197 rabbitmq> 2024-09-13 14:48:26.197680+00:00 [notice] <0.316.0> Feature flags: `message_containers_deaths_v2` enabled -14:48:26.198 rabbitmq> 2024-09-13 14:48:26.197922+00:00 [info] <0.254.0> DB: virgin node -> run peer discovery -14:48:26.198 rabbitmq> 2024-09-13 14:48:26.198123+00:00 [warning] <0.254.0> Classic peer discovery backend: list of nodes does not contain the local node [] -14:48:26.209 rabbitmq> 2024-09-13 14:48:26.208948+00:00 [notice] <0.44.0> Application mnesia exited with reason: stopped -14:48:26.514 rabbitmq> 2024-09-13 14:48:26.514365+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -14:48:26.515 rabbitmq> 2024-09-13 14:48:26.514472+00:00 [info] <0.254.0> Successfully synced tables from a peer -14:48:26.517 rabbitmq> 2024-09-13 14:48:26.514583+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -14:48:26.517 rabbitmq> 2024-09-13 14:48:26.514669+00:00 [info] <0.254.0> Successfully synced tables from a peer -14:48:26.539 rabbitmq> 2024-09-13 14:48:26.538985+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -14:48:26.539 rabbitmq> 2024-09-13 14:48:26.539216+00:00 [info] <0.254.0> Successfully synced tables from a peer -14:48:26.540 rabbitmq> 2024-09-13 14:48:26.539349+00:00 [info] <0.254.0> Running boot step tracking_metadata_store defined by app rabbit -14:48:26.540 rabbitmq> 2024-09-13 14:48:26.539428+00:00 [info] <0.558.0> Setting up a table for connection tracking on this node: tracked_connection -14:48:26.540 rabbitmq> 2024-09-13 14:48:26.539597+00:00 [info] <0.558.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost -14:48:26.541 rabbitmq> 2024-09-13 14:48:26.540127+00:00 [info] <0.558.0> Setting up a table for per-user connection counting on this node: tracked_connection_per_user -14:48:26.542 rabbitmq> 2024-09-13 14:48:26.540179+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel -14:48:26.542 rabbitmq> 2024-09-13 14:48:26.540225+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel_per_user -14:48:26.543 rabbitmq> 2024-09-13 14:48:26.540278+00:00 [info] <0.254.0> Running boot step networking_metadata_store defined by app rabbit -14:48:26.544 rabbitmq> 2024-09-13 14:48:26.540359+00:00 [info] <0.254.0> Running boot step feature_flags defined by app rabbit -14:48:26.544 rabbitmq> 2024-09-13 14:48:26.540906+00:00 [info] <0.254.0> Running boot step codec_correctness_check defined by app rabbit -14:48:26.545 rabbitmq> 2024-09-13 14:48:26.540961+00:00 [info] <0.254.0> Running boot step external_infrastructure defined by app rabbit -14:48:26.545 rabbitmq> 2024-09-13 14:48:26.540979+00:00 [info] <0.254.0> Running boot step rabbit_event defined by app rabbit -14:48:26.546 rabbitmq> 2024-09-13 14:48:26.541220+00:00 [info] <0.254.0> Running boot step rabbit_registry defined by app rabbit -14:48:26.546 rabbitmq> 2024-09-13 14:48:26.541328+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit -14:48:26.546 rabbitmq> 2024-09-13 14:48:26.541428+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit -14:48:26.546 rabbitmq> 2024-09-13 14:48:26.541502+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit -14:48:26.547 rabbitmq> 2024-09-13 14:48:26.541603+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_direct defined by app rabbit -14:48:26.547 rabbitmq> 2024-09-13 14:48:26.541735+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit -14:48:26.547 rabbitmq> 2024-09-13 14:48:26.541889+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_headers defined by app rabbit -14:48:26.548 rabbitmq> 2024-09-13 14:48:26.541994+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_topic defined by app rabbit -14:48:26.548 rabbitmq> 2024-09-13 14:48:26.542031+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit -14:48:26.548 rabbitmq> 2024-09-13 14:48:26.542173+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit -14:48:26.549 rabbitmq> 2024-09-13 14:48:26.542260+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit -14:48:26.549 rabbitmq> 2024-09-13 14:48:26.542299+00:00 [info] <0.254.0> Running boot step rabbit_priority_queue defined by app rabbit -14:48:26.549 rabbitmq> 2024-09-13 14:48:26.542340+00:00 [info] <0.254.0> Priority queues enabled, real BQ is rabbit_variable_queue -14:48:26.549 rabbitmq> 2024-09-13 14:48:26.542423+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_client_local defined by app rabbit -14:48:26.550 rabbitmq> 2024-09-13 14:48:26.543725+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit -14:48:26.550 rabbitmq> 2024-09-13 14:48:26.543843+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_random defined by app rabbit -14:48:26.550 rabbitmq> 2024-09-13 14:48:26.543925+00:00 [info] <0.254.0> Running boot step kernel_ready defined by app rabbit -14:48:26.551 rabbitmq> 2024-09-13 14:48:26.543949+00:00 [info] <0.254.0> Running boot step rabbit_sysmon_minder defined by app rabbit -14:48:26.551 rabbitmq> 2024-09-13 14:48:26.544059+00:00 [info] <0.254.0> Running boot step rabbit_epmd_monitor defined by app rabbit -14:48:26.552 rabbitmq> 2024-09-13 14:48:26.545494+00:00 [info] <0.566.0> epmd monitor knows us, inter-node communication (distribution) port: 25672 -14:48:26.552 rabbitmq> 2024-09-13 14:48:26.545584+00:00 [info] <0.254.0> Running boot step guid_generator defined by app rabbit -14:48:26.555 rabbitmq> 2024-09-13 14:48:26.555186+00:00 [info] <0.254.0> Running boot step rabbit_node_monitor defined by app rabbit -14:48:26.555 rabbitmq> 2024-09-13 14:48:26.555512+00:00 [info] <0.570.0> Starting rabbit_node_monitor (in ignore mode) -14:48:26.555 rabbitmq> 2024-09-13 14:48:26.555621+00:00 [info] <0.254.0> Running boot step delegate_sup defined by app rabbit -14:48:26.556 rabbitmq> 2024-09-13 14:48:26.555957+00:00 [info] <0.254.0> Running boot step rabbit_memory_monitor defined by app rabbit -14:48:26.556 rabbitmq> 2024-09-13 14:48:26.556058+00:00 [info] <0.254.0> Running boot step rabbit_fifo_dlx_sup defined by app rabbit -14:48:26.557 rabbitmq> 2024-09-13 14:48:26.556104+00:00 [info] <0.254.0> Running boot step core_initialized defined by app rabbit -14:48:26.557 rabbitmq> 2024-09-13 14:48:26.556124+00:00 [info] <0.254.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit -14:48:26.558 rabbitmq> 2024-09-13 14:48:26.556178+00:00 [info] <0.254.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit -14:48:26.558 rabbitmq> 2024-09-13 14:48:26.556218+00:00 [info] <0.254.0> Running boot step rabbit_definitions_hashing defined by app rabbit -14:48:26.559 rabbitmq> 2024-09-13 14:48:26.556320+00:00 [info] <0.254.0> Running boot step rabbit_exchange_parameters defined by app rabbit -14:48:26.597 rabbitmq> 2024-09-13 14:48:26.597197+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit -14:48:26.597 rabbitmq> 2024-09-13 14:48:26.597760+00:00 [info] <0.254.0> Running boot step rabbit_policies defined by app rabbit -14:48:26.598 rabbitmq> 2024-09-13 14:48:26.597995+00:00 [info] <0.254.0> Running boot step rabbit_policy defined by app rabbit -14:48:26.598 rabbitmq> 2024-09-13 14:48:26.598045+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_validator defined by app rabbit -14:48:26.598 rabbitmq> 2024-09-13 14:48:26.598314+00:00 [info] <0.254.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit -14:48:26.599 rabbitmq> 2024-09-13 14:48:26.598404+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue defined by app rabbit -14:48:26.599 rabbitmq> 2024-09-13 14:48:26.598506+00:00 [info] <0.254.0> Running boot step rabbit_stream_coordinator defined by app rabbit -14:48:26.599 rabbitmq> 2024-09-13 14:48:26.598822+00:00 [info] <0.254.0> Running boot step rabbit_vhost_limit defined by app rabbit -14:48:26.599 rabbitmq> 2024-09-13 14:48:26.598890+00:00 [info] <0.254.0> Running boot step rabbit_federation_parameters defined by app rabbitmq_federation -14:48:26.599 rabbitmq> 2024-09-13 14:48:26.599037+00:00 [info] <0.254.0> Running boot step rabbit_federation_supervisor defined by app rabbitmq_federation -14:48:26.608 rabbitmq> 2024-09-13 14:48:26.608075+00:00 [info] <0.254.0> Running boot step rabbit_federation_queue defined by app rabbitmq_federation -14:48:26.608 rabbitmq> 2024-09-13 14:48:26.608225+00:00 [info] <0.254.0> Running boot step rabbit_federation_upstream_exchange defined by app rabbitmq_federation -14:48:26.609 rabbitmq> 2024-09-13 14:48:26.608309+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management -14:48:26.609 rabbitmq> 2024-09-13 14:48:26.608372+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent -14:48:26.609 rabbitmq> 2024-09-13 14:48:26.608404+00:00 [info] <0.254.0> Management plugin: using rates mode 'basic' -14:48:26.609 rabbitmq> 2024-09-13 14:48:26.608573+00:00 [info] <0.254.0> Running boot step recovery defined by app rabbit -14:48:26.623 rabbitmq> 2024-09-13 14:48:26.623472+00:00 [info] <0.254.0> Running boot step empty_db_check defined by app rabbit -14:48:26.623 rabbitmq> 2024-09-13 14:48:26.623556+00:00 [info] <0.254.0> Will seed default virtual host and user... -14:48:26.623 rabbitmq> 2024-09-13 14:48:26.623686+00:00 [info] <0.254.0> Adding vhost '/' (description: 'Default virtual host', tags: []) -14:48:26.686 rabbitmq> 2024-09-13 14:48:26.685680+00:00 [info] <0.630.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@6a79a46cf398/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists -14:48:26.688 rabbitmq> 2024-09-13 14:48:26.688099+00:00 [info] <0.630.0> Setting segment_entry_count for vhost '/' with 0 queues to '2048' -14:48:26.706 rabbitmq> 2024-09-13 14:48:26.706385+00:00 [info] <0.630.0> Starting message stores for vhost '/' -14:48:26.707 rabbitmq> 2024-09-13 14:48:26.706690+00:00 [info] <0.639.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index -14:48:26.709 rabbitmq> 2024-09-13 14:48:26.708790+00:00 [info] <0.630.0> Started message store of type transient for vhost '/' -14:48:26.709 rabbitmq> 2024-09-13 14:48:26.708934+00:00 [info] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index -14:48:26.710 rabbitmq> 2024-09-13 14:48:26.709857+00:00 [warning] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch -14:48:26.711 rabbitmq> 2024-09-13 14:48:26.710974+00:00 [info] <0.630.0> Started message store of type persistent for vhost '/' -14:48:26.711 rabbitmq> 2024-09-13 14:48:26.711160+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_classic_queue took 22ms -14:48:26.711 rabbitmq> 2024-09-13 14:48:26.711208+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_quorum_queue took 0ms -14:48:26.712 rabbitmq> 2024-09-13 14:48:26.711259+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_stream_queue took 0ms -14:48:26.720 rabbitmq> 2024-09-13 14:48:26.719845+00:00 [info] <0.254.0> Created user 'guest' -14:48:26.728 rabbitmq> 2024-09-13 14:48:26.728032+00:00 [info] <0.254.0> Successfully set user tags for user 'guest' to [administrator] -14:48:26.735 rabbitmq> 2024-09-13 14:48:26.735375+00:00 [info] <0.254.0> Successfully set permissions for user 'guest' in virtual host '/' to '.*', '.*', '.*' -14:48:26.735 rabbitmq> 2024-09-13 14:48:26.735486+00:00 [info] <0.254.0> Running boot step rabbit_observer_cli defined by app rabbit -14:48:26.735 rabbitmq> 2024-09-13 14:48:26.735588+00:00 [info] <0.254.0> Running boot step rabbit_looking_glass defined by app rabbit -14:48:26.736 rabbitmq> 2024-09-13 14:48:26.735625+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics_gc defined by app rabbit -14:48:26.736 rabbitmq> 2024-09-13 14:48:26.735968+00:00 [info] <0.254.0> Running boot step background_gc defined by app rabbit -14:48:26.736 rabbitmq> 2024-09-13 14:48:26.736213+00:00 [info] <0.254.0> Running boot step routing_ready defined by app rabbit -14:48:26.736 rabbitmq> 2024-09-13 14:48:26.736399+00:00 [info] <0.254.0> Running boot step pre_flight defined by app rabbit -14:48:26.738 rabbitmq> 2024-09-13 14:48:26.736535+00:00 [info] <0.254.0> Running boot step notify_cluster defined by app rabbit -14:48:26.738 rabbitmq> 2024-09-13 14:48:26.736594+00:00 [info] <0.254.0> Running boot step networking defined by app rabbit -14:48:26.738 rabbitmq> 2024-09-13 14:48:26.736640+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue_periodic_membership_reconciliation defined by app rabbit -14:48:26.738 rabbitmq> 2024-09-13 14:48:26.736991+00:00 [info] <0.254.0> Running boot step definition_import_worker_pool defined by app rabbit -14:48:26.738 rabbitmq> 2024-09-13 14:48:26.737065+00:00 [info] <0.315.0> Starting worker pool 'definition_import_pool' with 4 processes in it -14:48:26.738 rabbitmq> 2024-09-13 14:48:26.737534+00:00 [info] <0.254.0> Running boot step cluster_name defined by app rabbit -14:48:26.738 rabbitmq> 2024-09-13 14:48:26.737656+00:00 [info] <0.254.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-9D-mfqy9ITQKE3qiXrZVow' -14:48:26.744 rabbitmq> 2024-09-13 14:48:26.744437+00:00 [info] <0.254.0> Running boot step virtual_host_reconciliation defined by app rabbit -14:48:26.745 rabbitmq> 2024-09-13 14:48:26.744806+00:00 [info] <0.254.0> Running boot step direct_client defined by app rabbit -14:48:26.745 rabbitmq> 2024-09-13 14:48:26.744917+00:00 [info] <0.254.0> Running boot step rabbit_federation_exchange defined by app rabbitmq_federation -14:48:26.745 rabbitmq> 2024-09-13 14:48:26.745048+00:00 [info] <0.254.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management -14:48:26.746 rabbitmq> 2024-09-13 14:48:26.745137+00:00 [info] <0.680.0> Resetting node maintenance status -14:48:26.926 rabbitmq> 2024-09-13 14:48:26.926328+00:00 [warning] <0.709.0> Deprecated features: `management_metrics_collection`: Feature `management_metrics_collection` is deprecated. -14:48:26.926 rabbitmq> 2024-09-13 14:48:26.926328+00:00 [warning] <0.709.0> By default, this feature can still be used for now. -14:48:26.926 rabbitmq> 2024-09-13 14:48:26.926328+00:00 [warning] <0.709.0> Its use will not be permitted by default in a future minor RabbitMQ version and the feature will be removed from a future major RabbitMQ version; actual versions to be determined. -14:48:26.926 rabbitmq> 2024-09-13 14:48:26.926328+00:00 [warning] <0.709.0> To continue using this feature when it is not permitted by default, set the following parameter in your configuration: -14:48:26.926 rabbitmq> 2024-09-13 14:48:26.926328+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = true" -14:48:26.926 rabbitmq> 2024-09-13 14:48:26.926328+00:00 [warning] <0.709.0> To test RabbitMQ as if the feature was removed, set this in your configuration: -14:48:26.926 rabbitmq> 2024-09-13 14:48:26.926328+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = false" -14:48:29.832 rabbitmq> 2024-09-13 14:48:29.831877+00:00 [info] <0.746.0> Management plugin: HTTP (non-TLS) listener started on port 15672 -14:48:29.832 rabbitmq> 2024-09-13 14:48:29.832016+00:00 [info] <0.776.0> Statistics database started. -14:48:29.832 rabbitmq> 2024-09-13 14:48:29.832080+00:00 [info] <0.775.0> Starting worker pool 'management_worker_pool' with 3 processes in it -14:48:29.839 rabbitmq> 2024-09-13 14:48:29.839537+00:00 [info] <0.794.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692 -14:48:29.839 rabbitmq> 2024-09-13 14:48:29.839690+00:00 [info] <0.680.0> Ready to start client connection listeners -14:48:29.841 rabbitmq> 2024-09-13 14:48:29.841660+00:00 [info] <0.838.0> started TCP listener on [::]:5672 -14:48:29.943 rabbitmq> completed with 5 plugins. -14:48:29.943 rabbitmq> 2024-09-13 14:48:29.943175+00:00 [info] <0.680.0> Server startup complete; 5 plugins started. -[INFO] DOCKER> Pattern 'Server startup complete' matched for container 6a79a46cf398 -14:48:29.943 rabbitmq> 2024-09-13 14:48:29.943175+00:00 [info] <0.680.0> * rabbitmq_prometheus -14:48:29.943 rabbitmq> 2024-09-13 14:48:29.943175+00:00 [info] <0.680.0> * rabbitmq_federation -14:48:29.943 rabbitmq> 2024-09-13 14:48:29.943175+00:00 [info] <0.680.0> * rabbitmq_management -14:48:29.943 rabbitmq> 2024-09-13 14:48:29.943175+00:00 [info] <0.680.0> * rabbitmq_management_agent -14:48:29.943 rabbitmq> 2024-09-13 14:48:29.943175+00:00 [info] <0.680.0> * rabbitmq_web_dispatch -14:48:29.963 rabbitmq> 2024-09-13 14:48:29.962809+00:00 [info] <0.9.0> Time to start RabbitMQ: 8613 ms -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waited on url http://localhost:15672 and on log out 'Server startup complete' 9068 ms -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Start container bb27467f5073 -14:48:31.448 sqs> -14:48:31.448 sqs> LocalStack version: 3.7.3.dev19 -14:48:31.448 sqs> LocalStack build date: 2024-09-13 -14:48:31.448 sqs> LocalStack build git hash: cb81582d8 -14:48:31.448 sqs> -14:48:31.983 sqs> Ready. -[INFO] DOCKER> Pattern 'Ready.' matched for container bb27467f5073 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Waited on log out 'Ready.' 1509 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container 8401371aec6c -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Start container 55e75f338a66 -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. -14:48:33.238 worker-languagedetection> [2024-09-13 14:48:33.237Z #007.??? INFO - - ] startup.sh: Running startup scripts... -14:48:33.241 worker-languagedetection> [2024-09-13 14:48:33.240Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -14:48:33.250 worker-languagedetection> [2024-09-13 14:48:33.248Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -14:48:33.251 worker-languagedetection> [2024-09-13 14:48:33.251Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -14:48:33.263 worker-languagedetection> [2024-09-13 14:48:33.261Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -14:48:33.265 worker-languagedetection> [2024-09-13 14:48:33.264Z #007.??? INFO - - ] startup.sh: Startup scripts completed -14:48:33.267 worker-languagedetection> [2024-09-13 14:48:33.266Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -14:48:33.578 worker-languagedetection> 14:48:33,404 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -14:48:33.578 worker-languagedetection> 14:48:33,405 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -14:48:33.578 worker-languagedetection> 14:48:33,405 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -14:48:33.578 worker-languagedetection> 14:48:33,406 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -14:48:33.578 worker-languagedetection> 14:48:33,411 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -14:48:33.578 worker-languagedetection> 14:48:33,412 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -14:48:33.578 worker-languagedetection> 14:48:33,421 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -14:48:33.578 worker-languagedetection> 14:48:33,421 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -14:48:33.578 worker-languagedetection> 14:48:33,421 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -14:48:33.578 worker-languagedetection> 14:48:33,422 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -14:48:33.578 worker-languagedetection> 14:48:33,426 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -14:48:33.578 worker-languagedetection> 14:48:33,431 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -14:48:33.578 worker-languagedetection> 14:48:33,473 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -14:48:33.578 worker-languagedetection> 14:48:33,473 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -14:48:33.578 worker-languagedetection> 14:48:33,473 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -14:48:33.578 worker-languagedetection> 14:48:33,523 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -14:48:33.578 worker-languagedetection> 14:48:33,523 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -14:48:33.578 worker-languagedetection> 14:48:33,523 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -14:48:33.578 worker-languagedetection> 14:48:33,526 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -14:48:33.578 worker-languagedetection> 14:48:33,526 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -14:48:33.578 worker-languagedetection> 14:48:33,534 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -14:48:33.578 worker-languagedetection> 14:48:33,536 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -14:48:33.578 worker-languagedetection> 14:48:33,565 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -14:48:33.578 worker-languagedetection> 14:48:33,568 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -14:48:33.578 worker-languagedetection> 14:48:33,569 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -14:48:33.578 worker-languagedetection> 14:48:33,569 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -14:48:33.578 worker-languagedetection> 14:48:33,569 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -14:48:33.578 worker-languagedetection> 14:48:33,570 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -14:48:33.578 worker-languagedetection> 14:48:33,570 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -14:48:33.578 worker-languagedetection> 14:48:33,570 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -14:48:33.578 worker-languagedetection> 14:48:33,570 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 149 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY -14:48:33.578 worker-languagedetection> -14:48:33.782 worker-languagedetection> [2024-09-13 14:48:33.763Z #451.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -14:48:34.519 worker-languagedetection> [2024-09-13 14:48:34.519Z #451.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -14:48:34.521 worker-languagedetection> [2024-09-13 14:48:34.520Z #451.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -14:48:34.521 worker-languagedetection> [2024-09-13 14:48:34.521Z #451.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -14:48:34.534 worker-languagedetection> [2024-09-13 14:48:34.533Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -14:48:34.536 worker-languagedetection> [2024-09-13 14:48:34.536Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -14:48:34.538 worker-languagedetection> [2024-09-13 14:48:34.538Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -14:48:34.540 worker-languagedetection> [2024-09-13 14:48:34.539Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -14:48:34.548 worker-languagedetection> [2024-09-13 14:48:34.547Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -14:48:34.549 worker-languagedetection> [2024-09-13 14:48:34.549Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -14:48:34.550 worker-languagedetection> [2024-09-13 14:48:34.550Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -14:48:34.591 worker-languagedetection> [2024-09-13 14:48:34.590Z #451.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider -14:48:34.635 worker-languagedetection> [2024-09-13 14:48:34.629Z #451.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} -14:48:34.715 worker-languagedetection> [2024-09-13 14:48:34.715Z #451.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -14:48:34.716 worker-languagedetection> [2024-09-13 14:48:34.715Z #451.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -14:48:34.718 worker-languagedetection> [2024-09-13 14:48:34.717Z #451.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS -14:48:34.726 worker-languagedetection> [2024-09-13 14:48:34.726Z #451.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. -14:48:34.742 worker-languagedetection> [2024-09-13 14:48:34.742Z #451.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE -14:48:34.754 worker-languagedetection> [2024-09-13 14:48:34.754Z #451.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY -14:48:34.756 worker-languagedetection> [2024-09-13 14:48:34.756Z #451.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY -14:48:34.757 worker-languagedetection> [2024-09-13 14:48:34.757Z #451.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY -14:48:34.763 worker-languagedetection> [2024-09-13 14:48:34.762Z #451.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE -14:48:34.764 worker-languagedetection> [2024-09-13 14:48:34.764Z #451.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY -14:48:34.764 worker-languagedetection> [2024-09-13 14:48:34.764Z #451.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE -14:48:34.769 worker-languagedetection> -14:48:35.071 worker-languagedetection> [2024-09-13 14:48:35.071Z #451.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} -14:48:35.074 worker-languagedetection> [2024-09-13 14:48:35.073Z #451.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@2d5a1588{/,null,AVAILABLE} -14:48:35.077 worker-languagedetection> [2024-09-13 14:48:35.076Z #451.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} -14:48:35.077 worker-languagedetection> [2024-09-13 14:48:35.077Z #451.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@1c61eda5{/,null,AVAILABLE} -14:48:35.084 worker-languagedetection> [2024-09-13 14:48:35.083Z #451.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -14:48:35.085 worker-languagedetection> [2024-09-13 14:48:35.085Z #451.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -14:48:35.089 worker-languagedetection> [2024-09-13 14:48:35.088Z #451.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@517a2b0{STARTING}[11.0.23,sto=30000] @1818ms -14:48:35.148 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 12 -14:48:35.656 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:48:36.160 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:36.665 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:37.174 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:48:37.688 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 -14:48:38.193 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:38.699 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:39.204 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:39.709 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:48:40.214 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:40.718 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:41.223 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:48:41.727 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:42.233 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:42.738 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:43.245 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:48:43.758 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:48:44.262 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:48:44.774 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:45.279 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:48:45.784 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:46.290 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:46.794 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:47.303 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:47.804 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:48.309 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:48.817 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:49.322 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:48:49.764 worker-languagedetection> [2024-09-13 14:48:49.763Z #451.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE -14:48:49.827 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:50.332 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:50 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:48:50.606 worker-languagedetection> [2024-09-13 14:48:50.606Z #451.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY -14:48:50.607 worker-languagedetection> [2024-09-13 14:48:50.606Z #451.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE -14:48:50.607 worker-languagedetection> [2024-09-13 14:48:50.606Z #451.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE -14:48:50.609 worker-languagedetection> [2024-09-13 14:48:50.609Z #451.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY -14:48:50.610 worker-languagedetection> [2024-09-13 14:48:50.609Z #451.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY -14:48:50.611 worker-languagedetection> [2024-09-13 14:48:50.609Z #451.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waited on url http://localhost:8082/health-check?type=READY 17587 ms -[INFO] -[INFO] --- failsafe:3.1.2:integration-test (sqs-implementation-testing) @ worker-languagedetection-container --- -14:48:50.853 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:48:50 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 -[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider -[INFO] -[INFO] ------------------------------------------------------- -[INFO] T E S T S -[INFO] ------------------------------------------------------- -[INFO] Running com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT -15:48:51,546 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -15:48:51,551 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - No custom configurators were discovered as a service. -15:48:51,551 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -15:48:51,553 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -15:48:51,559 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -15:48:51,560 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -15:48:51,568 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 8 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -15:48:51,568 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -15:48:51,570 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -15:48:51,572 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -15:48:51,576 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] -15:48:51,592 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@b2c9a9c - URL [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -15:48:51,679 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -15:48:51,679 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -15:48:51,679 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -15:48:51,783 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -15:48:51,783 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -15:48:51,783 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -15:48:51,795 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -15:48:51,795 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -15:48:51,812 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -15:48:51,815 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -15:48:51,937 |-INFO in ch.qos.logback.classic.pattern.DateConverter@fa4c865 - Setting zoneId to "UTC" -15:48:51,942 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -15:48:51,942 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -15:48:51,943 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -15:48:51,945 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -15:48:51,945 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -15:48:51,945 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@3bd82cf5 - End of configuration. -15:48:51,947 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@544fa968 - Registering current configuration as safe fallback point -15:48:51,947 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 377 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_field_multi_lang_en_fr_ger.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_multi_datasource.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_single_datasource.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_invalid.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple_multi.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_english.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_french.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_german.yaml.testcase - -=============== Starting test Item single_lang_french.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_french.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_french.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_french.yaml -Description: null -Associated tickets: null -Comments: single_lang_french.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 1 -Number of successful test cases (all test instances passes): 1 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid_combined.yaml -================================================================================ -14:49:03.337 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:49:03 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 2 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 2 -Number of successful test cases (all test instances passes): 2 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 3 -Number of successful test cases (all test instances passes): 3 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_simple_multi.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_simple_multi.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODE_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_FR_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_GER_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_simple_multi.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_simple_multi.yaml -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 4 -Number of successful test cases (all test instances passes): 4 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown_split.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 5 -Number of successful test cases (all test instances passes): 5 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_combined.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 6 -Number of successful test cases (all test instances passes): 6 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 7 -Number of successful test cases (all test instances passes): 7 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid_split.yaml -================================================================================ -14:49:33.383 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:49:33 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 0 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 8 -Number of successful test cases (all test instances passes): 8 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item single_lang_english.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_english.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_english.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_english.yaml -Description: null -Associated tickets: null -Comments: single_lang_english.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 9 -Number of successful test cases (all test instances passes): 9 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_lang_single_datasource.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_lang_single_datasource.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_lang_single_datasource.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_lang_single_datasource.yaml -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 10 -Number of successful test cases (all test instances passes): 10 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_field_multi_lang_en_fr_ger.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_field_multi_lang_en_fr_ger.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODE_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_FR_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_GER_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_field_multi_lang_en_fr_ger.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 11 -Number of successful test cases (all test instances passes): 11 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang_combined.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 12 -Number of successful test cases (all test instances passes): 12 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 13 -Number of successful test cases (all test instances passes): 13 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang_split.yaml -================================================================================ -14:50:03.422 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:50:03 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 14 -Number of successful test cases (all test instances passes): 14 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== -14:50:06.012 worker-languagedetection> [2024-09-13 14:50:06.008Z #451.054 ERROR - - ] c.h.c.w.l.LanguageDetectionWorker: Failed to read result format specified. - -=============== Starting test Item resultFormat_invalid.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_invalid.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_invalid.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_invalid.yaml -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 15 -Number of successful test cases (all test instances passes): 15 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown_combined.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 16 -Number of successful test cases (all test instances passes): 16 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_simple.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_simple.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_simple.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_simple.yaml -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 17 -Number of successful test cases (all test instances passes): 17 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_lang_multi_datasource.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_lang_multi_datasource.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_lang_multi_datasource.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 18 -Number of successful test cases (all test instances passes): 18 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_split.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_multi_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 19 -Number of successful test cases (all test instances passes): 19 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item single_lang_german.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_german.yaml -================================================================================ -14:50:33.466 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:50:33 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_multi_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_german.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_german.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_german.yaml -Description: null -Associated tickets: null -Comments: single_lang_german.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_german.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_german.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 20 -Number of successful test cases (all test instances passes): 20 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_multi_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_german.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS -Item with id single_lang_german.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_german.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_german.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 21 -Number of successful test cases (all test instances passes): 21 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== -[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 110.0 s -- in com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT -[INFO] -[INFO] Results: -[INFO] -[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0 -[INFO] -[INFO] -[INFO] --- failsafe:3.1.2:integration-test (rabbit-implementation-testing) @ worker-languagedetection-container --- -[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider -[INFO] -[INFO] ------------------------------------------------------- -[INFO] T E S T S -[INFO] ------------------------------------------------------- -[INFO] Running com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT -15:50:42,364 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -15:50:42,369 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - No custom configurators were discovered as a service. -15:50:42,369 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -15:50:42,371 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -15:50:42,377 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -15:50:42,378 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -15:50:42,386 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 8 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -15:50:42,386 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -15:50:42,387 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -15:50:42,389 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -15:50:42,392 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] -15:50:42,413 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@b2c9a9c - URL [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -15:50:42,492 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -15:50:42,492 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -15:50:42,492 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -15:50:42,580 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -15:50:42,580 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -15:50:42,580 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -15:50:42,590 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -15:50:42,590 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -15:50:42,602 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -15:50:42,605 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -15:50:42,706 |-INFO in ch.qos.logback.classic.pattern.DateConverter@fa4c865 - Setting zoneId to "UTC" -15:50:42,711 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -15:50:42,711 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -15:50:42,711 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -15:50:42,712 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -15:50:42,712 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -15:50:42,713 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@3bd82cf5 - End of configuration. -15:50:42,713 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@544fa968 - Registering current configuration as safe fallback point -15:50:42,713 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 326 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -14:50:44.546 rabbitmq> 2024-09-13 14:50:44.545931+00:00 [info] <0.872.0> accepting AMQP connection <0.872.0> (192.168.1.1:45208 -> 172.17.0.3:5672) -14:50:44.695 rabbitmq> 2024-09-13 14:50:44.695058+00:00 [info] <0.872.0> connection <0.872.0> (192.168.1.1:45208 -> 172.17.0.3:5672): user 'guest' authenticated and granted access to vhost '/' -14:50:44.775 rabbitmq> 2024-09-13 14:50:44.774739+00:00 [notice] <0.893.0> queue 'LanguageDetectionWorker-input-1' in vhost '/': candidate -> leader in term: 1 machine version: 3 -14:50:44.775 rabbitmq> 2024-09-13 14:50:44.775171+00:00 [info] <0.882.0> ra: started cluster %2F_LanguageDetectionWorker-input-1 with 1 servers -14:50:44.775 rabbitmq> 2024-09-13 14:50:44.775171+00:00 [info] <0.882.0> 0 servers failed to start: [] -14:50:44.775 rabbitmq> 2024-09-13 14:50:44.775171+00:00 [info] <0.882.0> Leader: {'%2F_LanguageDetectionWorker-input-1',rabbit@6a79a46cf398} -14:50:44.841 rabbitmq> 2024-09-13 14:50:44.841266+00:00 [notice] <0.900.0> queue 'LanguageDetectionWorker-output-1' in vhost '/': candidate -> leader in term: 1 machine version: 3 -14:50:44.841 rabbitmq> 2024-09-13 14:50:44.841447+00:00 [info] <0.887.0> ra: started cluster %2F_LanguageDetectionWorker-output-1 with 1 servers -14:50:44.842 rabbitmq> 2024-09-13 14:50:44.841447+00:00 [info] <0.887.0> 0 servers failed to start: [] -14:50:44.842 rabbitmq> 2024-09-13 14:50:44.841447+00:00 [info] <0.887.0> Leader: {'%2F_LanguageDetectionWorker-output-1',rabbit@6a79a46cf398} -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_field_multi_lang_en_fr_ger.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_multi_datasource.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_single_datasource.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_invalid.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple_multi.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_english.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_french.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_german.yaml.testcase - -=============== Starting test Item resultFormat_complex_invalid_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid_combined.yaml -================================================================================ -14:51:03.527 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:51:03 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 -14:51:20.642 worker-languagedetection> [2024-09-13 14:51:20.642Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue OWFjNWQyMjItNjI5Yi00ZmU4LThlYzgtZWQzMGU0ZjQyMzJkIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAxYzQyMmYwYi1mMzhhLTQyOWMtODgxYi1iMTc1NWY1Y2ZjM2QgMTcyNjIzODkzNS42NzMyOTI= for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: OWFjNWQyMjItNjI5Yi00ZmU4LThlYzgtZWQzMGU0ZjQyMzJkIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAxYzQyMmYwYi1mMzhhLTQyOWMtODgxYi1iMTc1NWY1Y2ZjM2QgMTcyNjIzODkzNS42NzMyOTI="} -14:51:20.643 worker-languagedetection> [2024-09-13 14:51:20.642Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue ZjA5ZTc4N2UtNmNmMS00MzI1LThlMDQtNDZmNDI0NTg0MzU3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA5ZjZkMWM5MS04MjlhLTQ4ZmYtOTY1Mi05NzdmYjE2OWVmYjIgMTcyNjIzODk0MC43NzYyODg3 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: ZjA5ZTc4N2UtNmNmMS00MzI1LThlMDQtNDZmNDI0NTg0MzU3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA5ZjZkMWM5MS04MjlhLTQ4ZmYtOTY1Mi05NzdmYjE2OWVmYjIgMTcyNjIzODk0MC43NzYyODg3"} -14:51:20.643 worker-languagedetection> [2024-09-13 14:51:20.643Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue YTY1OTIyOWUtNTEyMC00ODhiLWEzMTgtNWY1NzEyM2EyZjY5IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA4ZTJhOGIxNy1kNTkyLTQ2ZTQtYjhlNi1hZTVkMTQyMjQ5YjQgMTcyNjIzODk0NS43MDI1OTg= for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: YTY1OTIyOWUtNTEyMC00ODhiLWEzMTgtNWY1NzEyM2EyZjY5IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA4ZTJhOGIxNy1kNTkyLTQ2ZTQtYjhlNi1hZTVkMTQyMjQ5YjQgMTcyNjIzODk0NS43MDI1OTg="} -14:51:20.643 worker-languagedetection> [2024-09-13 14:51:20.643Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue Y2E0NjAzOTMtMWY4MC00Y2NjLTgyMjgtMmRhMzcyMTgyMjY5IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBjODNmZjBiYi02NjlhLTQxMGEtOWFjZi1kMGVkZTdjOGM5ZjUgMTcyNjIzODk1MC43Mzc5NDU= for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: Y2E0NjAzOTMtMWY4MC00Y2NjLTgyMjgtMmRhMzcyMTgyMjY5IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBjODNmZjBiYi02NjlhLTQxMGEtOWFjZi1kMGVkZTdjOGM5ZjUgMTcyNjIzODk1MC43Mzc5NDU="} -14:51:20.643 worker-languagedetection> [2024-09-13 14:51:20.643Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue NGJiZWZkYmYtOTM1NC00ZWIzLWFiYWQtOGQxN2Q5NzdiZDExIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA1YTk0OTkwMC0yMThlLTQ1ZTUtYTU0My01NTVhYjQyNGE5ZjkgMTcyNjIzODk1NS43NDc5NzYz for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: NGJiZWZkYmYtOTM1NC00ZWIzLWFiYWQtOGQxN2Q5NzdiZDExIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA1YTk0OTkwMC0yMThlLTQ1ZTUtYTU0My01NTVhYjQyNGE5ZjkgMTcyNjIzODk1NS43NDc5NzYz"} -14:51:20.643 worker-languagedetection> [2024-09-13 14:51:20.643Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue NWYzNGM0YjYtMmJkYS00YWEwLTgyZTgtNzAwNzQ3MmI1ZGIwIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAwNDJiNzUxNi1kYjhlLTRhZGYtOGNiMC1lY2E4ZmVkYTAxOTggMTcyNjIzODk2MC43NjI1NzQ3 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: NWYzNGM0YjYtMmJkYS00YWEwLTgyZTgtNzAwNzQ3MmI1ZGIwIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAwNDJiNzUxNi1kYjhlLTRhZGYtOGNiMC1lY2E4ZmVkYTAxOTggMTcyNjIzODk2MC43NjI1NzQ3"} -14:51:20.643 worker-languagedetection> [2024-09-13 14:51:20.643Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue ZTBlNDBlYzgtZWZlZi00NWZlLWIxMmItOGQ4ZjkxMjdkMzQwIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAwMTVhMDc4ZS05ZGY4LTRmNzEtOWIzYi04ZWIxMjg3M2YxYzQgMTcyNjIzODk2NS43OTg5OTM2 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: ZTBlNDBlYzgtZWZlZi00NWZlLWIxMmItOGQ4ZjkxMjdkMzQwIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAwMTVhMDc4ZS05ZGY4LTRmNzEtOWIzYi04ZWIxMjg3M2YxYzQgMTcyNjIzODk2NS43OTg5OTM2"} -14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.643Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue ZTI5MDk5OWYtNWIyMy00NjRiLTlhYTEtNGUyZGNhYjA2NGUyIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBiNDRmYmY2ZS1kZThmLTQ4NzUtYjhiMS1hYzdmOTU1YWNmYzUgMTcyNjIzODk3MC44MDIwOTU0 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: ZTI5MDk5OWYtNWIyMy00NjRiLTlhYTEtNGUyZGNhYjA2NGUyIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBiNDRmYmY2ZS1kZThmLTQ4NzUtYjhiMS1hYzdmOTU1YWNmYzUgMTcyNjIzODk3MC44MDIwOTU0"} -14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.643Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue NzIwOWFmYmUtZWE0YS00MTI2LWE1YjMtMmE4MDVlOWJiMjNjIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAwOGM5MTY0Mi0yYWYwLTQwMzMtYjZlNy05NDhmZjUyOGU2NzcgMTcyNjIzODk3NS44MTEzMDAz for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: NzIwOWFmYmUtZWE0YS00MTI2LWE1YjMtMmE4MDVlOWJiMjNjIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAwOGM5MTY0Mi0yYWYwLTQwMzMtYjZlNy05NDhmZjUyOGU2NzcgMTcyNjIzODk3NS44MTEzMDAz"} -14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue YjU3ZWIyNTItZDg3Mi00NTc1LTgxYjctMGEzNGExMzQ4ODc3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAxNDI2MmZkYi02MjE3LTQyM2UtOWE3ZC02Nzg1OGJkMDU4YTggMTcyNjIzODk4MC44MzcxNDE1 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: YjU3ZWIyNTItZDg3Mi00NTc1LTgxYjctMGEzNGExMzQ4ODc3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAxNDI2MmZkYi02MjE3LTQyM2UtOWE3ZC02Nzg1OGJkMDU4YTggMTcyNjIzODk4MC44MzcxNDE1"} -14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue MjY3MGQyMTAtMDdkYi00MDUwLTk4NDktZjVhNmRkZDU1NTE1IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAyMzAyY2QwOS1kY2M4LTRmNjctOGFmZi05M2I0ODkwOGI1NTcgMTcyNjIzODk4NS44NTM1MDU4 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: MjY3MGQyMTAtMDdkYi00MDUwLTk4NDktZjVhNmRkZDU1NTE1IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSAyMzAyY2QwOS1kY2M4LTRmNjctOGFmZi05M2I0ODkwOGI1NTcgMTcyNjIzODk4NS44NTM1MDU4"} -14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue OTNiOTdhNmUtMzUxNy00MmFiLTkzMjMtZjg1ZWJiMzUxMGE0IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA3MTI0MGZmMy01NWFkLTQyN2ItOTFkYS02M2UwODBkNjY4MzUgMTcyNjIzODk5MC44NjY4Nzc4 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: OTNiOTdhNmUtMzUxNy00MmFiLTkzMjMtZjg1ZWJiMzUxMGE0IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA3MTI0MGZmMy01NWFkLTQyN2ItOTFkYS02M2UwODBkNjY4MzUgMTcyNjIzODk5MC44NjY4Nzc4"} -14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue MGQ1YmZlYzUtY2YxOC00MWMxLTk4MmYtNmY0NDYzNjA5NWU5IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA3ZWY3MzQ1Ni03NTliLTQ5M2QtOTkwNS00MGRjNDQzN2E3NjggMTcyNjIzODk5NS44OTg1OTI1 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: MGQ1YmZlYzUtY2YxOC00MWMxLTk4MmYtNmY0NDYzNjA5NWU5IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA3ZWY3MzQ1Ni03NTliLTQ5M2QtOTkwNS00MGRjNDQzN2E3NjggMTcyNjIzODk5NS44OTg1OTI1"} -14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue ZWQ5NmIwNzYtM2FkMC00OTZiLWEzNTMtMTc3MWQwZGM1MzJmIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBmNWMyOGQ2ZS1iYjkxLTQ5NmMtOThiMC1mZWRlYzc5NmMwNDMgMTcyNjIzOTAwMC45NjkwMjc1 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: ZWQ5NmIwNzYtM2FkMC00OTZiLWEzNTMtMTc3MWQwZGM1MzJmIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBmNWMyOGQ2ZS1iYjkxLTQ5NmMtOThiMC1mZWRlYzc5NmMwNDMgMTcyNjIzOTAwMC45NjkwMjc1"} -14:51:20.644 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue M2UxNGFhOTctM2U1Zi00MDk2LWI3YjctMjgyNzIzMThkNmU3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBhNTg0MTk3MC1lNDc0LTQ1NGYtOTIyYS1kMjU4NTQzNjM0NjcgMTcyNjIzOTAwNi4wMDU2NTM= for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: M2UxNGFhOTctM2U1Zi00MDk2LWI3YjctMjgyNzIzMThkNmU3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBhNTg0MTk3MC1lNDc0LTQ1NGYtOTIyYS1kMjU4NTQzNjM0NjcgMTcyNjIzOTAwNi4wMDU2NTM="} -14:51:20.651 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue ZGYxODU0MWYtOGQzOS00ZmQ2LTg0NzAtZjk3YzI1ZWM3OTU0IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA5ZWQ2ZDg4My1mYWFjLTQyY2QtYWQyZi02ZWExOTJjYWQ4ZGYgMTcyNjIzOTAxMS4wMjYzMTM1 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: ZGYxODU0MWYtOGQzOS00ZmQ2LTg0NzAtZjk3YzI1ZWM3OTU0IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA5ZWQ2ZDg4My1mYWFjLTQyY2QtYWQyZi02ZWExOTJjYWQ4ZGYgMTcyNjIzOTAxMS4wMjYzMTM1"} -14:51:20.651 worker-languagedetection> [2024-09-13 14:51:20.644Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue ODQxNWRkNmMtNWM5Ni00Mzk2LTk4NGEtNThhYzc4NWJkYzM3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBmYmFiODY1OC01ZDZlLTRlZmItOGE5Ni01MjQ4OWZmYzhkOGIgMTcyNjIzOTAxNi4wMzgyNjY3 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: ODQxNWRkNmMtNWM5Ni00Mzk2LTk4NGEtNThhYzc4NWJkYzM3IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBmYmFiODY1OC01ZDZlLTRlZmItOGE5Ni01MjQ4OWZmYzhkOGIgMTcyNjIzOTAxNi4wMzgyNjY3"} -14:51:20.651 worker-languagedetection> [2024-09-13 14:51:20.645Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue NDMyOTlmYmQtODIxYS00ODU4LWE1MTktMDBjYTAwY2RkZjg4IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBlM2Q3NjY5MS01YTNmLTRiYWItOWZiYy0yOWQwNDAzOGM0ZDkgMTcyNjIzOTAyMS4wODExMTg= for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: NDMyOTlmYmQtODIxYS00ODU4LWE1MTktMDBjYTAwY2RkZjg4IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBlM2Q3NjY5MS01YTNmLTRiYWItOWZiYy0yOWQwNDAzOGM0ZDkgMTcyNjIzOTAyMS4wODExMTg="} -14:51:20.651 worker-languagedetection> [2024-09-13 14:51:20.645Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue NDMzZTMxZWEtNDAxOC00NGRmLWIwMGUtZmM3ODJiMmZiNjU0IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBmNzdmZmQ4NS03NTBhLTQ1N2EtOGU0Ny03YzAwMWYyZjA5ZTIgMTcyNjIzOTAyNi4xMDg1NzY1 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: NDMzZTMxZWEtNDAxOC00NGRmLWIwMGUtZmM3ODJiMmZiNjU0IGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSBmNzdmZmQ4NS03NTBhLTQ1N2EtOGU0Ny03YzAwMWYyZjA5ZTIgMTcyNjIzOTAyNi4xMDg1NzY1"} -14:51:20.651 worker-languagedetection> [2024-09-13 14:51:20.645Z #451.050 ERROR - - ] c.h.c.w.q.s.v.VisibilityMonitor: {"message":"Failed extending visibility to Fri Sep 13 15:01:20 UTC 2024.\nValue YTg2YWUyMDktMTg4NS00ODQ1LWE5MWMtZWY0MmVjNzE2MDRjIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA5OTNmNDQyYS04NjIwLTQyNjgtOWIzNS02Zjk3MmQyNTY0MzYgMTcyNjIzOTAzMS4xNTM3NzA3 for parameter ReceiptHandle is invalid. Reason: Message does not exist or is not available for visibility timeout change.: YTg2YWUyMDktMTg4NS00ODQ1LWE5MWMtZWY0MmVjNzE2MDRjIGFybjphd3M6c3FzOnVzLWVhc3QtMTowMDAwMDAwMDAwMDA6TGFuZ3VhZ2VEZXRlY3Rpb25Xb3JrZXItaW5wdXQtMSA5OTNmNDQyYS04NjIwLTQyNjgtOWIzNS02Zjk3MmQyNTY0MzYgMTcyNjIzOTAzMS4xNTM3NzA3"} -14:51:33.574 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:51:33 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 -14:52:03.617 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:52:03 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 -[INFO] Scanning for projects... -[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] -[INFO] Inspecting build with total of 1 modules... -[INFO] Installing Nexus Staging features: -[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin -[INFO] -[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- -[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT -[INFO] from pom.xml -[INFO] --------------------------------[ pom ]--------------------------------- -[INFO] -[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] -[INFO] -[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- -[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target -[INFO] -[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- -[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed -[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed -[INFO] -[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- -[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true -[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container -[INFO] Git info extracted in 280ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' -[INFO] -[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- -[INFO] Using plugin classloader, includes GMavenPlus and project classpath. -[INFO] Using Groovy 3.0.19 to perform execute. -[INFO] -[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- -[INFO] Updating license headers... -[INFO] -[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- -[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar -[INFO] -[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- -[INFO] Copying 2 resources from src/main/config to target/config-files -[INFO] -[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- -[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox -[INFO] DOCKER> -[INFO] DOCKER> ---> 6fd955f66c23 -[INFO] DOCKER> Step 2/4 : COPY maven /config/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 8be7948e3c01 -[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> ef52e370b90f -[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 1f97ff59e5f4 -[INFO] DOCKER> Successfully built 1f97ff59e5f4 -[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:1f97f -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Created docker-build.tar in 1 minute and 4 seconds -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 -[INFO] DOCKER> -[INFO] DOCKER> ---> 0f51baaf46f5 -[INFO] DOCKER> Step 2/4 : COPY maven /maven/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 91e7f56ef8cf -[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 002fc83963fa -[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 2adee4e4f048 -[INFO] DOCKER> Successfully built 2adee4e4f048 -[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Built image sha256:2adee -[INFO] -[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- -[INFO] Changes detected - recompiling the module! :source -[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes -[INFO] -[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- -[INFO] -[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- -[INFO] Not executing Javadoc as the project is not a Java classpath-capable package -[INFO] -[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container e2f8be125ba7 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. -14:57:14.871 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf -14:57:14.873 webdav> + getent passwd 33 -14:57:14.874 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin -14:57:14.874 webdav> + useradd -r webdav -u 33 -g 33 -14:57:14.905 webdav> useradd: UID 33 is not unique -14:57:14.905 webdav> + mkdir -p /srv/common/webdav -14:57:14.907 webdav> + chown 33 /srv/common/webdav -14:57:14.908 webdav> + trap _term SIGTERM -14:57:14.908 webdav> + pid=12 -14:57:14.908 webdav> + wait 12 -14:57:14.909 webdav> + /usr/sbin/apache2 -D FOREGROUND -14:57:14.923 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -14:57:14.927 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -14:57:14.929 webdav> [Fri Sep 13 14:57:14.929014 2024] [mpm_event:notice] [pid 12:tid 140495996053376] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations -14:57:14.929 webdav> [Fri Sep 13 14:57:14.929301 2024] [core:notice] [pid 12:tid 140495996053376] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' -14:57:15.032 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:14:57:15 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" -[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 122 ms -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Start container b99d74a1c69c -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waiting on url http://localhost:15672 with method HEAD for status 200..399. -14:57:19.322 rabbitmq> 2024-09-13 14:57:19.315666+00:00 [notice] <0.44.0> Application syslog exited with reason: stopped -14:57:19.322 rabbitmq> 2024-09-13 14:57:19.321749+00:00 [notice] <0.254.0> Logging: switching to configured handler(s); following messages may not be visible in this log output -14:57:19.322 rabbitmq> 2024-09-13 14:57:19.322268+00:00 [notice] <0.254.0> Logging: configured log handlers are now ACTIVE -14:57:19.333 rabbitmq> 2024-09-13 14:57:19.332741+00:00 [info] <0.254.0> ra: starting system quorum_queues -14:57:19.333 rabbitmq> 2024-09-13 14:57:19.332824+00:00 [info] <0.254.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/quorum/rabbit@b99d74a1c69c -14:57:19.399 rabbitmq> 2024-09-13 14:57:19.398775+00:00 [info] <0.268.0> ra system 'quorum_queues' running pre init for 0 registered servers -14:57:19.412 rabbitmq> 2024-09-13 14:57:19.412484+00:00 [info] <0.269.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered -14:57:19.430 rabbitmq> 2024-09-13 14:57:19.430241+00:00 [notice] <0.274.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables -14:57:19.454 rabbitmq> 2024-09-13 14:57:19.454261+00:00 [info] <0.254.0> ra: starting system coordination -14:57:19.454 rabbitmq> 2024-09-13 14:57:19.454322+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/coordination/rabbit@b99d74a1c69c -14:57:19.457 rabbitmq> 2024-09-13 14:57:19.456980+00:00 [info] <0.282.0> ra system 'coordination' running pre init for 0 registered servers -14:57:19.458 rabbitmq> 2024-09-13 14:57:19.458421+00:00 [info] <0.283.0> ra: meta data store initialised for system coordination. 0 record(s) recovered -14:57:19.458 rabbitmq> 2024-09-13 14:57:19.458643+00:00 [notice] <0.288.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables -14:57:19.469 rabbitmq> 2024-09-13 14:57:19.468228+00:00 [info] <0.254.0> ra: starting system coordination -14:57:19.469 rabbitmq> 2024-09-13 14:57:19.468337+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/coordination/rabbit@b99d74a1c69c -14:57:19.605 rabbitmq> 2024-09-13 14:57:19.604649+00:00 [info] <0.254.0> Waiting for Khepri leader for 30000 ms, 9 retries left -14:57:19.621 rabbitmq> 2024-09-13 14:57:19.621470+00:00 [notice] <0.292.0> RabbitMQ metadata store: candidate -> leader in term: 1 machine version: 1 -14:57:19.631 rabbitmq> 2024-09-13 14:57:19.630999+00:00 [info] <0.254.0> Khepri leader elected -14:57:19.631 rabbitmq> 2024-09-13 14:57:19.631061+00:00 [info] <0.254.0> Waiting for Khepri projections for 30000 ms, 9 retries left -14:57:20.051 rabbitmq> 2024-09-13 14:57:20.051560+00:00 [info] <0.254.0> -14:57:20.051 rabbitmq> 2024-09-13 14:57:20.051560+00:00 [info] <0.254.0> Starting RabbitMQ 3.13.7 on Erlang 26.2.5.3 [jit] -14:57:20.051 rabbitmq> 2024-09-13 14:57:20.051560+00:00 [info] <0.254.0> Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries -14:57:20.051 rabbitmq> 2024-09-13 14:57:20.051560+00:00 [info] <0.254.0> Licensed under the MPL 2.0. Website: https://rabbitmq.com -14:57:20.054 rabbitmq> -14:57:20.054 rabbitmq> ## ## RabbitMQ 3.13.7 -14:57:20.054 rabbitmq> ## ## -14:57:20.054 rabbitmq> ########## Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries -14:57:20.054 rabbitmq> ###### ## -14:57:20.054 rabbitmq> ########## Licensed under the MPL 2.0. Website: https://rabbitmq.com -14:57:20.054 rabbitmq> -14:57:20.054 rabbitmq> Erlang: 26.2.5.3 [jit] -14:57:20.054 rabbitmq> TLS Library: OpenSSL - OpenSSL 3.1.7 3 Sep 2024 -14:57:20.054 rabbitmq> Release series support status: see https://www.rabbitmq.com/release-information -14:57:20.054 rabbitmq> -14:57:20.054 rabbitmq> Doc guides: https://www.rabbitmq.com/docs -14:57:20.054 rabbitmq> Support: https://www.rabbitmq.com/docs/contact -14:57:20.054 rabbitmq> Tutorials: https://www.rabbitmq.com/tutorials -14:57:20.054 rabbitmq> Monitoring: https://www.rabbitmq.com/docs/monitoring -14:57:20.054 rabbitmq> Upgrading: https://www.rabbitmq.com/docs/upgrade -14:57:20.054 rabbitmq> -14:57:20.054 rabbitmq> Logs: -14:57:20.054 rabbitmq> -14:57:20.054 rabbitmq> Config file(s): /etc/rabbitmq/conf.d/10-defaults.conf -14:57:20.054 rabbitmq> -14:57:20.055 rabbitmq> Starting broker...2024-09-13 14:57:20.054410+00:00 [info] <0.254.0> -14:57:20.055 rabbitmq> 2024-09-13 14:57:20.054410+00:00 [info] <0.254.0> node : rabbit@b99d74a1c69c -14:57:20.055 rabbitmq> 2024-09-13 14:57:20.054410+00:00 [info] <0.254.0> home dir : /var/lib/rabbitmq -14:57:20.055 rabbitmq> 2024-09-13 14:57:20.054410+00:00 [info] <0.254.0> config file(s) : /etc/rabbitmq/conf.d/10-defaults.conf -14:57:20.055 rabbitmq> 2024-09-13 14:57:20.054410+00:00 [info] <0.254.0> cookie hash : DtrVpf+NDyAIx8ItysiyZQ== -14:57:20.055 rabbitmq> 2024-09-13 14:57:20.054410+00:00 [info] <0.254.0> log(s) : -14:57:20.055 rabbitmq> 2024-09-13 14:57:20.054410+00:00 [info] <0.254.0> data dir : /var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c -14:57:20.402 rabbitmq> 2024-09-13 14:57:20.402504+00:00 [info] <0.254.0> Running boot step pre_boot defined by app rabbit -14:57:20.403 rabbitmq> 2024-09-13 14:57:20.402572+00:00 [info] <0.254.0> Running boot step rabbit_global_counters defined by app rabbit -14:57:20.403 rabbitmq> 2024-09-13 14:57:20.402805+00:00 [info] <0.254.0> Running boot step rabbit_osiris_metrics defined by app rabbit -14:57:20.403 rabbitmq> 2024-09-13 14:57:20.402894+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics defined by app rabbit -14:57:20.403 rabbitmq> 2024-09-13 14:57:20.403137+00:00 [info] <0.254.0> Running boot step rabbit_alarm defined by app rabbit -14:57:20.415 rabbitmq> 2024-09-13 14:57:20.415269+00:00 [info] <0.329.0> Memory high watermark set to 6399 MiB (6710412902 bytes) of 15998 MiB (16776032256 bytes) total -14:57:20.418 rabbitmq> 2024-09-13 14:57:20.418166+00:00 [info] <0.331.0> Enabling free disk space monitoring (disk free space: 969863970816, total memory: 16776032256) -14:57:20.418 rabbitmq> 2024-09-13 14:57:20.418221+00:00 [info] <0.331.0> Disk free limit set to 50MB -14:57:20.420 rabbitmq> 2024-09-13 14:57:20.420384+00:00 [info] <0.254.0> Running boot step code_server_cache defined by app rabbit -14:57:20.420 rabbitmq> 2024-09-13 14:57:20.420489+00:00 [info] <0.254.0> Running boot step file_handle_cache defined by app rabbit -14:57:20.429 rabbitmq> 2024-09-13 14:57:20.428703+00:00 [info] <0.334.0> Limiting to approx 1048479 file handles (943629 sockets) -14:57:20.429 rabbitmq> 2024-09-13 14:57:20.428843+00:00 [info] <0.335.0> FHC read buffering: OFF -14:57:20.429 rabbitmq> 2024-09-13 14:57:20.428878+00:00 [info] <0.335.0> FHC write buffering: ON -14:57:20.429 rabbitmq> 2024-09-13 14:57:20.429337+00:00 [info] <0.254.0> Running boot step worker_pool defined by app rabbit -14:57:20.431 rabbitmq> 2024-09-13 14:57:20.429452+00:00 [info] <0.315.0> Will use 4 processes for default worker pool -14:57:20.431 rabbitmq> 2024-09-13 14:57:20.429494+00:00 [info] <0.315.0> Starting worker pool 'worker_pool' with 4 processes in it -14:57:20.431 rabbitmq> 2024-09-13 14:57:20.429856+00:00 [info] <0.254.0> Running boot step database defined by app rabbit -14:57:20.431 rabbitmq> 2024-09-13 14:57:20.430162+00:00 [info] <0.254.0> Peer discovery: configured backend: rabbit_peer_discovery_classic_config -14:57:20.432 rabbitmq> 2024-09-13 14:57:20.431321+00:00 [notice] <0.316.0> Feature flags: attempt to enable `detailed_queues_endpoint`... -14:57:20.500 rabbitmq> 2024-09-13 14:57:20.500343+00:00 [notice] <0.316.0> Feature flags: `detailed_queues_endpoint` enabled -14:57:20.500 rabbitmq> 2024-09-13 14:57:20.500479+00:00 [notice] <0.316.0> Feature flags: attempt to enable `quorum_queue_non_voters`... -14:57:20.571 rabbitmq> 2024-09-13 14:57:20.570838+00:00 [notice] <0.316.0> Feature flags: `quorum_queue_non_voters` enabled -14:57:20.571 rabbitmq> 2024-09-13 14:57:20.571009+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_update_config_command`... -14:57:20.640 rabbitmq> 2024-09-13 14:57:20.640190+00:00 [notice] <0.316.0> Feature flags: `stream_update_config_command` enabled -14:57:20.640 rabbitmq> 2024-09-13 14:57:20.640320+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_filtering`... -14:57:20.711 rabbitmq> 2024-09-13 14:57:20.711213+00:00 [notice] <0.316.0> Feature flags: `stream_filtering` enabled -14:57:20.713 rabbitmq> 2024-09-13 14:57:20.711322+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_sac_coordinator_unblock_group`... -14:57:20.779 rabbitmq> 2024-09-13 14:57:20.778706+00:00 [notice] <0.316.0> Feature flags: `stream_sac_coordinator_unblock_group` enabled -14:57:20.780 rabbitmq> 2024-09-13 14:57:20.778953+00:00 [notice] <0.316.0> Feature flags: attempt to enable `restart_streams`... -14:57:20.851 rabbitmq> 2024-09-13 14:57:20.851162+00:00 [notice] <0.316.0> Feature flags: `restart_streams` enabled -14:57:20.851 rabbitmq> 2024-09-13 14:57:20.851276+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers`... -14:57:20.922 rabbitmq> 2024-09-13 14:57:20.922008+00:00 [notice] <0.316.0> Feature flags: `message_containers` enabled -14:57:20.922 rabbitmq> 2024-09-13 14:57:20.922172+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers_deaths_v2`... -14:57:20.993 rabbitmq> 2024-09-13 14:57:20.992911+00:00 [notice] <0.316.0> Feature flags: `message_containers_deaths_v2` enabled -14:57:20.993 rabbitmq> 2024-09-13 14:57:20.993175+00:00 [info] <0.254.0> DB: virgin node -> run peer discovery -14:57:20.993 rabbitmq> 2024-09-13 14:57:20.993237+00:00 [warning] <0.254.0> Classic peer discovery backend: list of nodes does not contain the local node [] -14:57:21.006 rabbitmq> 2024-09-13 14:57:21.006531+00:00 [notice] <0.44.0> Application mnesia exited with reason: stopped -14:57:21.294 rabbitmq> 2024-09-13 14:57:21.294241+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -14:57:21.294 rabbitmq> 2024-09-13 14:57:21.294372+00:00 [info] <0.254.0> Successfully synced tables from a peer -14:57:21.295 rabbitmq> 2024-09-13 14:57:21.294455+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -14:57:21.295 rabbitmq> 2024-09-13 14:57:21.295359+00:00 [info] <0.254.0> Successfully synced tables from a peer -14:57:21.317 rabbitmq> 2024-09-13 14:57:21.317296+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -14:57:21.317 rabbitmq> 2024-09-13 14:57:21.317444+00:00 [info] <0.254.0> Successfully synced tables from a peer -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.317633+00:00 [info] <0.254.0> Running boot step tracking_metadata_store defined by app rabbit -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.317705+00:00 [info] <0.558.0> Setting up a table for connection tracking on this node: tracked_connection -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.317772+00:00 [info] <0.558.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.317820+00:00 [info] <0.558.0> Setting up a table for per-user connection counting on this node: tracked_connection_per_user -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.317860+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.317928+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel_per_user -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318000+00:00 [info] <0.254.0> Running boot step networking_metadata_store defined by app rabbit -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318040+00:00 [info] <0.254.0> Running boot step feature_flags defined by app rabbit -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318125+00:00 [info] <0.254.0> Running boot step codec_correctness_check defined by app rabbit -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318151+00:00 [info] <0.254.0> Running boot step external_infrastructure defined by app rabbit -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318168+00:00 [info] <0.254.0> Running boot step rabbit_event defined by app rabbit -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318379+00:00 [info] <0.254.0> Running boot step rabbit_registry defined by app rabbit -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318494+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318596+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318641+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318715+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_direct defined by app rabbit -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318768+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit -14:57:21.318 rabbitmq> 2024-09-13 14:57:21.318827+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_headers defined by app rabbit -14:57:21.319 rabbitmq> 2024-09-13 14:57:21.318864+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_topic defined by app rabbit -14:57:21.319 rabbitmq> 2024-09-13 14:57:21.318896+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit -14:57:21.319 rabbitmq> 2024-09-13 14:57:21.318933+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit -14:57:21.322 rabbitmq> 2024-09-13 14:57:21.319047+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit -14:57:21.322 rabbitmq> 2024-09-13 14:57:21.322637+00:00 [info] <0.254.0> Running boot step rabbit_priority_queue defined by app rabbit -14:57:21.323 rabbitmq> 2024-09-13 14:57:21.322675+00:00 [info] <0.254.0> Priority queues enabled, real BQ is rabbit_variable_queue -14:57:21.324 rabbitmq> 2024-09-13 14:57:21.322727+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_client_local defined by app rabbit -14:57:21.324 rabbitmq> 2024-09-13 14:57:21.322830+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit -14:57:21.324 rabbitmq> 2024-09-13 14:57:21.322891+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_random defined by app rabbit -14:57:21.324 rabbitmq> 2024-09-13 14:57:21.323246+00:00 [info] <0.254.0> Running boot step kernel_ready defined by app rabbit -14:57:21.325 rabbitmq> 2024-09-13 14:57:21.323300+00:00 [info] <0.254.0> Running boot step rabbit_sysmon_minder defined by app rabbit -14:57:21.325 rabbitmq> 2024-09-13 14:57:21.324870+00:00 [info] <0.254.0> Running boot step rabbit_epmd_monitor defined by app rabbit -14:57:21.326 rabbitmq> 2024-09-13 14:57:21.326064+00:00 [info] <0.566.0> epmd monitor knows us, inter-node communication (distribution) port: 25672 -14:57:21.326 rabbitmq> 2024-09-13 14:57:21.326205+00:00 [info] <0.254.0> Running boot step guid_generator defined by app rabbit -14:57:21.334 rabbitmq> 2024-09-13 14:57:21.333850+00:00 [info] <0.254.0> Running boot step rabbit_node_monitor defined by app rabbit -14:57:21.334 rabbitmq> 2024-09-13 14:57:21.334169+00:00 [info] <0.570.0> Starting rabbit_node_monitor (in ignore mode) -14:57:21.334 rabbitmq> 2024-09-13 14:57:21.334263+00:00 [info] <0.254.0> Running boot step delegate_sup defined by app rabbit -14:57:21.335 rabbitmq> 2024-09-13 14:57:21.334557+00:00 [info] <0.254.0> Running boot step rabbit_memory_monitor defined by app rabbit -14:57:21.335 rabbitmq> 2024-09-13 14:57:21.334719+00:00 [info] <0.254.0> Running boot step rabbit_fifo_dlx_sup defined by app rabbit -14:57:21.335 rabbitmq> 2024-09-13 14:57:21.334788+00:00 [info] <0.254.0> Running boot step core_initialized defined by app rabbit -14:57:21.335 rabbitmq> 2024-09-13 14:57:21.334820+00:00 [info] <0.254.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit -14:57:21.335 rabbitmq> 2024-09-13 14:57:21.334899+00:00 [info] <0.254.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit -14:57:21.335 rabbitmq> 2024-09-13 14:57:21.334962+00:00 [info] <0.254.0> Running boot step rabbit_definitions_hashing defined by app rabbit -14:57:21.335 rabbitmq> 2024-09-13 14:57:21.335031+00:00 [info] <0.254.0> Running boot step rabbit_exchange_parameters defined by app rabbit -14:57:21.369 rabbitmq> 2024-09-13 14:57:21.369487+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit -14:57:21.370 rabbitmq> 2024-09-13 14:57:21.369859+00:00 [info] <0.254.0> Running boot step rabbit_policies defined by app rabbit -14:57:21.370 rabbitmq> 2024-09-13 14:57:21.370052+00:00 [info] <0.254.0> Running boot step rabbit_policy defined by app rabbit -14:57:21.371 rabbitmq> 2024-09-13 14:57:21.370092+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_validator defined by app rabbit -14:57:21.371 rabbitmq> 2024-09-13 14:57:21.370267+00:00 [info] <0.254.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit -14:57:21.371 rabbitmq> 2024-09-13 14:57:21.370340+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue defined by app rabbit -14:57:21.371 rabbitmq> 2024-09-13 14:57:21.370470+00:00 [info] <0.254.0> Running boot step rabbit_stream_coordinator defined by app rabbit -14:57:21.371 rabbitmq> 2024-09-13 14:57:21.370838+00:00 [info] <0.254.0> Running boot step rabbit_vhost_limit defined by app rabbit -14:57:21.371 rabbitmq> 2024-09-13 14:57:21.370992+00:00 [info] <0.254.0> Running boot step rabbit_federation_parameters defined by app rabbitmq_federation -14:57:21.372 rabbitmq> 2024-09-13 14:57:21.371220+00:00 [info] <0.254.0> Running boot step rabbit_federation_supervisor defined by app rabbitmq_federation -14:57:21.381 rabbitmq> 2024-09-13 14:57:21.380919+00:00 [info] <0.254.0> Running boot step rabbit_federation_queue defined by app rabbitmq_federation -14:57:21.381 rabbitmq> 2024-09-13 14:57:21.381120+00:00 [info] <0.254.0> Running boot step rabbit_federation_upstream_exchange defined by app rabbitmq_federation -14:57:21.381 rabbitmq> 2024-09-13 14:57:21.381245+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management -14:57:21.381 rabbitmq> 2024-09-13 14:57:21.381320+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent -14:57:21.381 rabbitmq> 2024-09-13 14:57:21.381355+00:00 [info] <0.254.0> Management plugin: using rates mode 'basic' -14:57:21.382 rabbitmq> 2024-09-13 14:57:21.381517+00:00 [info] <0.254.0> Running boot step recovery defined by app rabbit -14:57:21.394 rabbitmq> 2024-09-13 14:57:21.394530+00:00 [info] <0.254.0> Running boot step empty_db_check defined by app rabbit -14:57:21.395 rabbitmq> 2024-09-13 14:57:21.394633+00:00 [info] <0.254.0> Will seed default virtual host and user... -14:57:21.395 rabbitmq> 2024-09-13 14:57:21.394764+00:00 [info] <0.254.0> Adding vhost '/' (description: 'Default virtual host', tags: []) -14:57:21.451 rabbitmq> 2024-09-13 14:57:21.451193+00:00 [info] <0.630.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists -14:57:21.453 rabbitmq> 2024-09-13 14:57:21.453630+00:00 [info] <0.630.0> Setting segment_entry_count for vhost '/' with 0 queues to '2048' -14:57:21.471 rabbitmq> 2024-09-13 14:57:21.471370+00:00 [info] <0.630.0> Starting message stores for vhost '/' -14:57:21.472 rabbitmq> 2024-09-13 14:57:21.471668+00:00 [info] <0.639.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index -14:57:21.476 rabbitmq> 2024-09-13 14:57:21.475790+00:00 [info] <0.630.0> Started message store of type transient for vhost '/' -14:57:21.476 rabbitmq> 2024-09-13 14:57:21.476001+00:00 [info] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index -14:57:21.478 rabbitmq> 2024-09-13 14:57:21.477814+00:00 [warning] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch -14:57:21.479 rabbitmq> 2024-09-13 14:57:21.478799+00:00 [info] <0.630.0> Started message store of type persistent for vhost '/' -14:57:21.479 rabbitmq> 2024-09-13 14:57:21.478959+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_classic_queue took 24ms -14:57:21.479 rabbitmq> 2024-09-13 14:57:21.479002+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_quorum_queue took 0ms -14:57:21.479 rabbitmq> 2024-09-13 14:57:21.479051+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_stream_queue took 0ms -14:57:21.488 rabbitmq> 2024-09-13 14:57:21.487862+00:00 [info] <0.254.0> Created user 'guest' -14:57:21.495 rabbitmq> 2024-09-13 14:57:21.495336+00:00 [info] <0.254.0> Successfully set user tags for user 'guest' to [administrator] -14:57:21.502 rabbitmq> 2024-09-13 14:57:21.502090+00:00 [info] <0.254.0> Successfully set permissions for user 'guest' in virtual host '/' to '.*', '.*', '.*' -14:57:21.502 rabbitmq> 2024-09-13 14:57:21.502165+00:00 [info] <0.254.0> Running boot step rabbit_observer_cli defined by app rabbit -14:57:21.502 rabbitmq> 2024-09-13 14:57:21.502288+00:00 [info] <0.254.0> Running boot step rabbit_looking_glass defined by app rabbit -14:57:21.503 rabbitmq> 2024-09-13 14:57:21.502318+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics_gc defined by app rabbit -14:57:21.503 rabbitmq> 2024-09-13 14:57:21.502551+00:00 [info] <0.254.0> Running boot step background_gc defined by app rabbit -14:57:21.503 rabbitmq> 2024-09-13 14:57:21.502706+00:00 [info] <0.254.0> Running boot step routing_ready defined by app rabbit -14:57:21.504 rabbitmq> 2024-09-13 14:57:21.502733+00:00 [info] <0.254.0> Running boot step pre_flight defined by app rabbit -14:57:21.504 rabbitmq> 2024-09-13 14:57:21.502766+00:00 [info] <0.254.0> Running boot step notify_cluster defined by app rabbit -14:57:21.504 rabbitmq> 2024-09-13 14:57:21.502825+00:00 [info] <0.254.0> Running boot step networking defined by app rabbit -14:57:21.504 rabbitmq> 2024-09-13 14:57:21.502930+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue_periodic_membership_reconciliation defined by app rabbit -14:57:21.504 rabbitmq> 2024-09-13 14:57:21.503768+00:00 [info] <0.254.0> Running boot step definition_import_worker_pool defined by app rabbit -14:57:21.504 rabbitmq> 2024-09-13 14:57:21.504050+00:00 [info] <0.315.0> Starting worker pool 'definition_import_pool' with 4 processes in it -14:57:21.504 rabbitmq> 2024-09-13 14:57:21.504436+00:00 [info] <0.254.0> Running boot step cluster_name defined by app rabbit -14:57:21.508 rabbitmq> 2024-09-13 14:57:21.504571+00:00 [info] <0.254.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-9unL4wEQuGZc6VsVKLKV3w' -14:57:21.511 rabbitmq> 2024-09-13 14:57:21.511491+00:00 [info] <0.254.0> Running boot step virtual_host_reconciliation defined by app rabbit -14:57:21.511 rabbitmq> 2024-09-13 14:57:21.511762+00:00 [info] <0.254.0> Running boot step direct_client defined by app rabbit -14:57:21.512 rabbitmq> 2024-09-13 14:57:21.511852+00:00 [info] <0.254.0> Running boot step rabbit_federation_exchange defined by app rabbitmq_federation -14:57:21.512 rabbitmq> 2024-09-13 14:57:21.511965+00:00 [info] <0.254.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management -14:57:21.512 rabbitmq> 2024-09-13 14:57:21.512052+00:00 [info] <0.680.0> Resetting node maintenance status -14:57:21.699 rabbitmq> 2024-09-13 14:57:21.698944+00:00 [warning] <0.709.0> Deprecated features: `management_metrics_collection`: Feature `management_metrics_collection` is deprecated. -14:57:21.699 rabbitmq> 2024-09-13 14:57:21.698944+00:00 [warning] <0.709.0> By default, this feature can still be used for now. -14:57:21.699 rabbitmq> 2024-09-13 14:57:21.698944+00:00 [warning] <0.709.0> Its use will not be permitted by default in a future minor RabbitMQ version and the feature will be removed from a future major RabbitMQ version; actual versions to be determined. -14:57:21.699 rabbitmq> 2024-09-13 14:57:21.698944+00:00 [warning] <0.709.0> To continue using this feature when it is not permitted by default, set the following parameter in your configuration: -14:57:21.699 rabbitmq> 2024-09-13 14:57:21.698944+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = true" -14:57:21.699 rabbitmq> 2024-09-13 14:57:21.698944+00:00 [warning] <0.709.0> To test RabbitMQ as if the feature was removed, set this in your configuration: -14:57:21.699 rabbitmq> 2024-09-13 14:57:21.698944+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = false" -14:57:25.551 rabbitmq> 2024-09-13 14:57:25.551485+00:00 [info] <0.746.0> Management plugin: HTTP (non-TLS) listener started on port 15672 -14:57:25.552 rabbitmq> 2024-09-13 14:57:25.551670+00:00 [info] <0.776.0> Statistics database started. -14:57:25.552 rabbitmq> 2024-09-13 14:57:25.551753+00:00 [info] <0.775.0> Starting worker pool 'management_worker_pool' with 3 processes in it -14:57:25.561 rabbitmq> 2024-09-13 14:57:25.560909+00:00 [info] <0.794.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692 -14:57:25.561 rabbitmq> 2024-09-13 14:57:25.561095+00:00 [info] <0.680.0> Ready to start client connection listeners -14:57:25.563 rabbitmq> 2024-09-13 14:57:25.563355+00:00 [info] <0.838.0> started TCP listener on [::]:5672 -14:57:25.697 rabbitmq> completed with 5 plugins. -14:57:25.698 rabbitmq> 2024-09-13 14:57:25.697632+00:00 [info] <0.680.0> Server startup complete; 5 plugins started. -[INFO] DOCKER> Pattern 'Server startup complete' matched for container b99d74a1c69c -14:57:25.698 rabbitmq> 2024-09-13 14:57:25.697632+00:00 [info] <0.680.0> * rabbitmq_prometheus -14:57:25.698 rabbitmq> 2024-09-13 14:57:25.697632+00:00 [info] <0.680.0> * rabbitmq_federation -14:57:25.698 rabbitmq> 2024-09-13 14:57:25.697632+00:00 [info] <0.680.0> * rabbitmq_management -14:57:25.698 rabbitmq> 2024-09-13 14:57:25.697632+00:00 [info] <0.680.0> * rabbitmq_management_agent -14:57:25.698 rabbitmq> 2024-09-13 14:57:25.697632+00:00 [info] <0.680.0> * rabbitmq_web_dispatch -14:57:25.738 rabbitmq> 2024-09-13 14:57:25.737676+00:00 [info] <0.9.0> Time to start RabbitMQ: 10046 ms -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waited on url http://localhost:15672 and on log out 'Server startup complete' 10575 ms -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Start container cb1fe3043c48 -14:57:27.607 sqs> -14:57:27.607 sqs> LocalStack version: 3.7.3.dev19 -14:57:27.607 sqs> LocalStack build date: 2024-09-13 -14:57:27.607 sqs> LocalStack build git hash: cb81582d8 -14:57:27.607 sqs> -14:57:28.134 sqs> Ready. -[INFO] DOCKER> Pattern 'Ready.' matched for container cb1fe3043c48 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Waited on log out 'Ready.' 2011 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container 575e9e9b1ebf -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Start container 86d4c7ac6a01 -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. -14:57:29.633 worker-languagedetection> [2024-09-13 14:57:29.632Z #007.??? INFO - - ] startup.sh: Running startup scripts... -14:57:29.637 worker-languagedetection> [2024-09-13 14:57:29.636Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -14:57:29.649 worker-languagedetection> [2024-09-13 14:57:29.646Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -14:57:29.654 worker-languagedetection> [2024-09-13 14:57:29.652Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -14:57:29.664 worker-languagedetection> [2024-09-13 14:57:29.662Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -14:57:29.666 worker-languagedetection> [2024-09-13 14:57:29.665Z #007.??? INFO - - ] startup.sh: Startup scripts completed -14:57:29.669 worker-languagedetection> [2024-09-13 14:57:29.668Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -14:57:30.031 worker-languagedetection> 14:57:29,833 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -14:57:30.031 worker-languagedetection> 14:57:29,835 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -14:57:30.031 worker-languagedetection> 14:57:29,835 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -14:57:30.031 worker-languagedetection> 14:57:29,836 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -14:57:30.031 worker-languagedetection> 14:57:29,843 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -14:57:30.031 worker-languagedetection> 14:57:29,843 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -14:57:30.031 worker-languagedetection> 14:57:29,852 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 7 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -14:57:30.031 worker-languagedetection> 14:57:29,852 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -14:57:30.031 worker-languagedetection> 14:57:29,853 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -14:57:30.031 worker-languagedetection> 14:57:29,853 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -14:57:30.031 worker-languagedetection> 14:57:29,857 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -14:57:30.031 worker-languagedetection> 14:57:29,862 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -14:57:30.031 worker-languagedetection> 14:57:29,907 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -14:57:30.031 worker-languagedetection> 14:57:29,907 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -14:57:30.031 worker-languagedetection> 14:57:29,907 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -14:57:30.031 worker-languagedetection> 14:57:29,960 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -14:57:30.031 worker-languagedetection> 14:57:29,960 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -14:57:30.031 worker-languagedetection> 14:57:29,960 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -14:57:30.031 worker-languagedetection> 14:57:29,964 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -14:57:30.031 worker-languagedetection> 14:57:29,965 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -14:57:30.031 worker-languagedetection> 14:57:29,976 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -14:57:30.031 worker-languagedetection> 14:57:29,981 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -14:57:30.031 worker-languagedetection> 14:57:30,014 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -14:57:30.031 worker-languagedetection> 14:57:30,018 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -14:57:30.031 worker-languagedetection> 14:57:30,018 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -14:57:30.031 worker-languagedetection> 14:57:30,019 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -14:57:30.031 worker-languagedetection> 14:57:30,019 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -14:57:30.031 worker-languagedetection> 14:57:30,020 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -14:57:30.031 worker-languagedetection> 14:57:30,020 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -14:57:30.031 worker-languagedetection> 14:57:30,020 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -14:57:30.031 worker-languagedetection> 14:57:30,020 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 167 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY -14:57:30.031 worker-languagedetection> -14:57:30.268 worker-languagedetection> [2024-09-13 14:57:30.247Z #092.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -14:57:31.004 worker-languagedetection> [2024-09-13 14:57:31.003Z #092.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -14:57:31.006 worker-languagedetection> [2024-09-13 14:57:31.005Z #092.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -14:57:31.007 worker-languagedetection> [2024-09-13 14:57:31.006Z #092.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -14:57:31.021 worker-languagedetection> [2024-09-13 14:57:31.021Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -14:57:31.024 worker-languagedetection> [2024-09-13 14:57:31.024Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -14:57:31.025 worker-languagedetection> [2024-09-13 14:57:31.025Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -14:57:31.027 worker-languagedetection> [2024-09-13 14:57:31.027Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -14:57:31.036 worker-languagedetection> [2024-09-13 14:57:31.035Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -14:57:31.038 worker-languagedetection> [2024-09-13 14:57:31.038Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -14:57:31.039 worker-languagedetection> [2024-09-13 14:57:31.039Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -14:57:31.088 worker-languagedetection> [2024-09-13 14:57:31.088Z #092.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider -14:57:31.131 worker-languagedetection> [2024-09-13 14:57:31.127Z #092.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} -14:57:31.243 worker-languagedetection> [2024-09-13 14:57:31.243Z #092.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -14:57:31.243 worker-languagedetection> [2024-09-13 14:57:31.243Z #092.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -14:57:31.246 worker-languagedetection> [2024-09-13 14:57:31.245Z #092.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS -14:57:31.258 worker-languagedetection> [2024-09-13 14:57:31.257Z #092.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. -14:57:31.290 worker-languagedetection> [2024-09-13 14:57:31.289Z #092.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE -14:57:31.293 worker-languagedetection> [2024-09-13 14:57:31.292Z #092.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY -14:57:31.293 worker-languagedetection> [2024-09-13 14:57:31.293Z #092.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY -14:57:31.294 worker-languagedetection> [2024-09-13 14:57:31.294Z #092.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY -14:57:31.295 worker-languagedetection> [2024-09-13 14:57:31.295Z #092.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE -14:57:31.301 worker-languagedetection> [2024-09-13 14:57:31.301Z #092.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY -14:57:31.302 worker-languagedetection> [2024-09-13 14:57:31.302Z #092.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE -14:57:31.305 worker-languagedetection> -14:57:31.637 worker-languagedetection> [2024-09-13 14:57:31.636Z #092.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} -14:57:31.639 worker-languagedetection> [2024-09-13 14:57:31.638Z #092.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@2d5a1588{/,null,AVAILABLE} -14:57:31.642 worker-languagedetection> [2024-09-13 14:57:31.642Z #092.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} -14:57:31.643 worker-languagedetection> [2024-09-13 14:57:31.642Z #092.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@1c61eda5{/,null,AVAILABLE} -14:57:31.649 worker-languagedetection> [2024-09-13 14:57:31.649Z #092.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -14:57:31.652 worker-languagedetection> [2024-09-13 14:57:31.652Z #092.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -14:57:31.655 worker-languagedetection> [2024-09-13 14:57:31.655Z #092.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@517a2b0{STARTING}[11.0.23,sto=30000] @1981ms -14:57:31.733 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:31 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 13 -14:57:32.233 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:32 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:57:32.737 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:32 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:33.246 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:33 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:33.754 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:33 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:34.267 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:34 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:57:34.776 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:34 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:57:35.286 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:35.801 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:57:36.305 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:36.809 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:37.314 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:57:37.818 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:38.325 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:38.831 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:39.339 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:39.852 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:57:40.360 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:40.869 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:41.374 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:41.886 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:57:42.405 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 -14:57:42.905 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:43.415 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:43.923 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:57:44.429 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:44.938 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:57:45.443 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -14:57:45.957 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -14:57:46.296 worker-languagedetection> [2024-09-13 14:57:46.296Z #092.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE -14:57:46.464 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:46.969 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -14:57:47.130 worker-languagedetection> [2024-09-13 14:57:47.130Z #092.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY -14:57:47.131 worker-languagedetection> [2024-09-13 14:57:47.130Z #092.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE -14:57:47.131 worker-languagedetection> [2024-09-13 14:57:47.130Z #092.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE -14:57:47.132 worker-languagedetection> [2024-09-13 14:57:47.132Z #092.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY -14:57:47.133 worker-languagedetection> [2024-09-13 14:57:47.133Z #092.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY -14:57:47.133 worker-languagedetection> [2024-09-13 14:57:47.133Z #092.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waited on url http://localhost:8082/health-check?type=READY 17823 ms -14:57:47.474 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:14:57:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -[INFO] -[INFO] --- failsafe:3.1.2:integration-test (sqs-implementation-testing) @ worker-languagedetection-container --- -[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider -[INFO] -[INFO] ------------------------------------------------------- -[INFO] T E S T S -[INFO] ------------------------------------------------------- -[INFO] Running com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT -15:57:48,142 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -15:57:48,147 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - No custom configurators were discovered as a service. -15:57:48,147 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -15:57:48,150 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -15:57:48,156 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -15:57:48,158 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -15:57:48,167 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 9 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -15:57:48,167 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -15:57:48,169 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -15:57:48,170 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -15:57:48,174 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] -15:57:48,188 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@b2c9a9c - URL [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -15:57:48,273 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -15:57:48,273 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -15:57:48,273 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -15:57:48,383 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -15:57:48,383 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -15:57:48,383 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -15:57:48,397 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -15:57:48,397 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -15:57:48,413 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -15:57:48,415 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -15:57:48,533 |-INFO in ch.qos.logback.classic.pattern.DateConverter@fa4c865 - Setting zoneId to "UTC" -15:57:48,537 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -15:57:48,537 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -15:57:48,537 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -15:57:48,539 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -15:57:48,539 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -15:57:48,539 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@3bd82cf5 - End of configuration. -15:57:48,540 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@544fa968 - Registering current configuration as safe fallback point -15:57:48,540 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 371 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_field_multi_lang_en_fr_ger.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_multi_datasource.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_single_datasource.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_invalid.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple_multi.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_english.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_french.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_german.yaml.testcase - -=============== Starting test Item single_lang_french.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_french.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_french.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_french.yaml -Description: null -Associated tickets: null -Comments: single_lang_french.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 1 -Number of successful test cases (all test instances passes): 1 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid_combined.yaml -================================================================================ -14:57:59.688 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:57:59 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 2 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 2 -Number of successful test cases (all test instances passes): 2 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 3 -Number of successful test cases (all test instances passes): 3 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_simple_multi.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_simple_multi.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODE_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_FR_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_GER_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_simple_multi.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_simple_multi.yaml -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 4 -Number of successful test cases (all test instances passes): 4 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown_split.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 5 -Number of successful test cases (all test instances passes): 5 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_combined.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 6 -Number of successful test cases (all test instances passes): 6 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 7 -Number of successful test cases (all test instances passes): 7 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid_split.yaml -================================================================================ -14:58:29.738 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:58:29 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 8 -Number of successful test cases (all test instances passes): 8 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item single_lang_english.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_english.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_english.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_english.yaml -Description: null -Associated tickets: null -Comments: single_lang_english.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 9 -Number of successful test cases (all test instances passes): 9 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_lang_single_datasource.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_lang_single_datasource.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_lang_single_datasource.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_lang_single_datasource.yaml -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 10 -Number of successful test cases (all test instances passes): 10 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_field_multi_lang_en_fr_ger.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_field_multi_lang_en_fr_ger.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODE_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_FR_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_GER_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_field_multi_lang_en_fr_ger.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 11 -Number of successful test cases (all test instances passes): 11 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang_combined.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 12 -Number of successful test cases (all test instances passes): 12 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 13 -Number of successful test cases (all test instances passes): 13 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang_split.yaml -================================================================================ -14:58:59.779 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:58:59 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 14 -Number of successful test cases (all test instances passes): 14 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== -14:59:02.451 worker-languagedetection> [2024-09-13 14:59:02.450Z #092.054 ERROR - - ] c.h.c.w.l.LanguageDetectionWorker: Failed to read result format specified. - -=============== Starting test Item resultFormat_invalid.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_invalid.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_invalid.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_invalid.yaml -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 15 -Number of successful test cases (all test instances passes): 15 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown_combined.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 16 -Number of successful test cases (all test instances passes): 16 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_simple.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_simple.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_simple.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_simple.yaml -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 17 -Number of successful test cases (all test instances passes): 17 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_lang_multi_datasource.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_lang_multi_datasource.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_lang_multi_datasource.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 18 -Number of successful test cases (all test instances passes): 18 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_split.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_multi_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 19 -Number of successful test cases (all test instances passes): 19 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item single_lang_german.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_german.yaml -================================================================================ -14:59:29.825 worker-languagedetection> [0:0:0:0:0:0:0:1] - - [13/Sep/2024:14:59:29 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_multi_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_german.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_german.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_german.yaml -Description: null -Associated tickets: null -Comments: single_lang_german.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_german.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_german.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 20 -Number of successful test cases (all test instances passes): 20 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_multi_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_german.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS -Item with id single_lang_german.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_german.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_german.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 21 -Number of successful test cases (all test instances passes): 21 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== -[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 109.8 s -- in com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT -[INFO] -[INFO] Results: -[INFO] -[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0 -[INFO] -[INFO] -[INFO] --- failsafe:3.1.2:integration-test (rabbit-implementation-testing) @ worker-languagedetection-container --- -[INFO] Tests are skipped. -[INFO] -[INFO] --- docker:0.43.4:stop (stop) @ worker-languagedetection-container --- -14:59:38.431 worker-languagedetection> [2024-09-13 14:59:38.430Z #092.033 INFO - - ] o.eclipse.jetty.server.Server: Stopped Server@517a2b0{STOPPING}[11.0.23,sto=30000] -14:59:38.431 worker-languagedetection> [2024-09-13 14:59:38.431Z #092.033 INFO - - ] o.eclipse.jetty.server.Server: Shutdown Server@517a2b0{STOPPING}[11.0.23,sto=30000] -14:59:38.434 worker-languagedetection> [2024-09-13 14:59:38.434Z #092.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -14:59:38.436 worker-languagedetection> [2024-09-13 14:59:38.436Z #092.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -14:59:38.437 worker-languagedetection> [2024-09-13 14:59:38.437Z #092.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@1c61eda5{/,null,STOPPED} -14:59:38.444 worker-languagedetection> [2024-09-13 14:59:38.443Z #092.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@2d5a1588{/,null,STOPPED} -14:59:38.446 worker-languagedetection> [2024-09-13 14:59:38.446Z #092.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stop requested, allowing in-progress tasks to complete. -14:59:38.446 worker-languagedetection> [2024-09-13 14:59:38.446Z #092.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stopped. -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Stop and removed container 86d4c7ac6a01 after 0 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container 575e9e9b1ebf after 0 ms -14:59:39.952 sqs> Localstack runtime received signal 15 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Stop and removed container cb1fe3043c48 after 0 ms -14:59:45.985 rabbitmq> 2024-09-13 14:59:45.984947+00:00 [notice] <0.64.0> SIGTERM received - shutting down -14:59:45.985 rabbitmq> 2024-09-13 14:59:45.984947+00:00 [notice] <0.64.0> -14:59:45.987 rabbitmq> 2024-09-13 14:59:45.986524+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_prometheus_tls -14:59:45.991 rabbitmq> 2024-09-13 14:59:45.990603+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_management_tls -14:59:45.998 rabbitmq> 2024-09-13 14:59:45.997829+00:00 [info] <0.838.0> stopped TCP listener on [::]:5672 -14:59:45.998 rabbitmq> 2024-09-13 14:59:45.998540+00:00 [info] <0.630.0> Virtual host '/' is stopping -14:59:45.999 rabbitmq> 2024-09-13 14:59:45.998630+00:00 [info] <0.872.0> Closing all connections in vhost '/' on node 'rabbit@b99d74a1c69c' because the vhost is stopping -14:59:45.999 rabbitmq> 2024-09-13 14:59:45.998773+00:00 [info] <0.643.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' -14:59:46.009 rabbitmq> 2024-09-13 14:59:46.009380+00:00 [info] <0.643.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' is stopped -14:59:46.009 rabbitmq> 2024-09-13 14:59:46.009564+00:00 [info] <0.639.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' -14:59:46.020 rabbitmq> 2024-09-13 14:59:46.020501+00:00 [info] <0.639.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@b99d74a1c69c/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' is stopped -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Stop and removed container b99d74a1c69c after 0 ms -14:59:48.296 webdav> Caught SIGTERM signal! -14:59:48.296 webdav> ++ _term -14:59:48.296 webdav> ++ echo 'Caught SIGTERM signal!' -14:59:48.296 webdav> ++ kill -TERM '' -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container e2f8be125ba7 after 0 ms -[INFO] -[INFO] --- license:4.3:check (check-license-headers) @ worker-languagedetection-container --- -[INFO] Checking licenses... -[INFO] -[INFO] --- dependency:3.6.0:analyze-only (check-dependencies) @ worker-languagedetection-container --- -[INFO] Skipping pom project -[INFO] -[INFO] --- duplicate-finder:2.0.1:check (deepcheck-dependencies) @ worker-languagedetection-container --- -[INFO] Ignoring POM project! -[INFO] -[INFO] --- failsafe:3.1.2:verify (sqs-implementation-testing) @ worker-languagedetection-container --- -[INFO] -[INFO] --- failsafe:3.1.2:verify (rabbit-implementation-testing) @ worker-languagedetection-container --- -[INFO] Tests are skipped. -[INFO] -[INFO] --- install:3.1.1:install (default-install) @ worker-languagedetection-container --- -[INFO] Skipping artifact installation -[INFO] -[INFO] --- docker-versions:1.0.0-29:depopulate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD SUCCESS -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 04:08 min -[INFO] Finished at: 2024-09-13T15:59:50+01:00 -[INFO] ------------------------------------------------------------------------ -[INFO] Scanning for projects... -[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] -[INFO] Inspecting build with total of 1 modules... -[INFO] Installing Nexus Staging features: -[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin -[INFO] -[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- -[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT -[INFO] from pom.xml -[INFO] --------------------------------[ pom ]--------------------------------- -[INFO] -[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest] -[INFO] -[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- -[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target -[INFO] -[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- -[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed -[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed -[INFO] -[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- -[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection, runOnlyAtExecutionRoot: true -[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container -[INFO] Git info extracted in 253ms, revision: '77bf1ac', branch: 'US922349', tag: '', commitsCount: '290', commitDate: '2024-09-11', buildDate: '2024-09-13', buildnumber: 'US922349.290.77bf1ac' -[INFO] -[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- -[INFO] Using plugin classloader, includes GMavenPlus and project classpath. -[INFO] Using Groovy 3.0.19 to perform execute. -[INFO] -[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- -[INFO] Updating license headers... -[INFO] -[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- -[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar -[INFO] -[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- -[INFO] Copying 2 resources from src/main/config to target/config-files -[INFO] -[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- -[INFO] Copying files to /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/build/maven -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/worker-languagedetection-container-test-config/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Created docker-build.tar in 1 second -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox -[INFO] DOCKER> -[INFO] DOCKER> ---> 6fd955f66c23 -[INFO] DOCKER> Step 2/4 : COPY maven /config/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 8be7948e3c01 -[INFO] DOCKER> Step 3/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> ef52e370b90f -[INFO] DOCKER> Step 4/4 : VOLUME ["/config"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 1f97ff59e5f4 -[INFO] DOCKER> Successfully built 1f97ff59e5f4 -[INFO] DOCKER> Successfully tagged worker-languagedetection-container-test-config:5.2.0-SNAPSHOT -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Built image sha256:1f97f -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/build/maven.tar -[INFO] Building tar: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target/docker/dev/cafdataprocessing/worker-languagedetection/5.2.0-SNAPSHOT/tmp/docker-build.tar -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Created docker-build.tar in 1 minute and 13 seconds -[INFO] DOCKER> Step 1/4 : FROM worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21 -[INFO] DOCKER> -[INFO] DOCKER> ---> 0f51baaf46f5 -[INFO] DOCKER> Step 2/4 : COPY maven /maven/ -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 91e7f56ef8cf -[INFO] DOCKER> Step 3/4 : HEALTHCHECK CMD curl -f http://localhost:8080/health-check?type=READY || exit 1 -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 002fc83963fa -[INFO] DOCKER> Step 4/4 : CMD ["/maven/worker.sh"] -[INFO] DOCKER> -[INFO] DOCKER> ---> Using cache -[INFO] DOCKER> ---> 2adee4e4f048 -[INFO] DOCKER> Successfully built 2adee4e4f048 -[INFO] DOCKER> Successfully tagged dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Built image sha256:2adee -[INFO] -[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- -[INFO] Changes detected - recompiling the module! :source -[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes -[INFO] -[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- -[INFO] -[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- -[INFO] Not executing Javadoc as the project is not a Java classpath-capable package -[INFO] -[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container 9d60a115a88a -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:28080 with method HEAD for status 200..399. -15:03:19.261 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf -15:03:19.262 webdav> + getent passwd 33 -15:03:19.263 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin -15:03:19.263 webdav> + useradd -r webdav -u 33 -g 33 -15:03:19.312 webdav> useradd: UID 33 is not unique -15:03:19.314 webdav> + mkdir -p /srv/common/webdav -15:03:19.314 webdav> + chown 33 /srv/common/webdav -15:03:19.314 webdav> + trap _term SIGTERM -15:03:19.315 webdav> + pid=12 -15:03:19.315 webdav> + wait 12 -15:03:19.315 webdav> + /usr/sbin/apache2 -D FOREGROUND -15:03:19.325 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -15:03:19.329 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -15:03:19.330 webdav> [Fri Sep 13 15:03:19.330702 2024] [mpm_event:notice] [pid 12:tid 139663843268480] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations -15:03:19.331 webdav> [Fri Sep 13 15:03:19.331192 2024] [core:notice] [pid 12:tid 139663843268480] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' -15:03:19.426 webdav> 172.17.0.2:80 192.168.1.1 - - [13/Sep/2024:15:03:19 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" -[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:28080 and on log out 'WebDAV Server startup complete' 128 ms -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Start container 5be5395a1c9d -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waiting on url http://localhost:15672 with method HEAD for status 200..399. -15:03:23.871 rabbitmq> 2024-09-13 15:03:23.861188+00:00 [notice] <0.44.0> Application syslog exited with reason: stopped -15:03:23.871 rabbitmq> 2024-09-13 15:03:23.870915+00:00 [notice] <0.254.0> Logging: switching to configured handler(s); following messages may not be visible in this log output -15:03:23.872 rabbitmq> 2024-09-13 15:03:23.871580+00:00 [notice] <0.254.0> Logging: configured log handlers are now ACTIVE -15:03:23.885 rabbitmq> 2024-09-13 15:03:23.884479+00:00 [info] <0.254.0> ra: starting system quorum_queues -15:03:23.885 rabbitmq> 2024-09-13 15:03:23.884597+00:00 [info] <0.254.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/quorum/rabbit@5be5395a1c9d -15:03:23.977 rabbitmq> 2024-09-13 15:03:23.977248+00:00 [info] <0.268.0> ra system 'quorum_queues' running pre init for 0 registered servers -15:03:23.992 rabbitmq> 2024-09-13 15:03:23.992631+00:00 [info] <0.269.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered -15:03:24.016 rabbitmq> 2024-09-13 15:03:24.015610+00:00 [notice] <0.274.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables -15:03:24.046 rabbitmq> 2024-09-13 15:03:24.046460+00:00 [info] <0.254.0> ra: starting system coordination -15:03:24.046 rabbitmq> 2024-09-13 15:03:24.046538+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/coordination/rabbit@5be5395a1c9d -15:03:24.049 rabbitmq> 2024-09-13 15:03:24.049537+00:00 [info] <0.282.0> ra system 'coordination' running pre init for 0 registered servers -15:03:24.051 rabbitmq> 2024-09-13 15:03:24.050880+00:00 [info] <0.283.0> ra: meta data store initialised for system coordination. 0 record(s) recovered -15:03:24.051 rabbitmq> 2024-09-13 15:03:24.051132+00:00 [notice] <0.288.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables -15:03:24.063 rabbitmq> 2024-09-13 15:03:24.062637+00:00 [info] <0.254.0> ra: starting system coordination -15:03:24.063 rabbitmq> 2024-09-13 15:03:24.062708+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/coordination/rabbit@5be5395a1c9d -15:03:24.203 rabbitmq> 2024-09-13 15:03:24.202966+00:00 [info] <0.254.0> Waiting for Khepri leader for 30000 ms, 9 retries left -15:03:24.225 rabbitmq> 2024-09-13 15:03:24.224806+00:00 [notice] <0.292.0> RabbitMQ metadata store: candidate -> leader in term: 1 machine version: 1 -15:03:24.233 rabbitmq> 2024-09-13 15:03:24.232934+00:00 [info] <0.254.0> Khepri leader elected -15:03:24.233 rabbitmq> 2024-09-13 15:03:24.232992+00:00 [info] <0.254.0> Waiting for Khepri projections for 30000 ms, 9 retries left -15:03:24.660 rabbitmq> 2024-09-13 15:03:24.660466+00:00 [info] <0.254.0> -15:03:24.660 rabbitmq> 2024-09-13 15:03:24.660466+00:00 [info] <0.254.0> Starting RabbitMQ 3.13.7 on Erlang 26.2.5.3 [jit] -15:03:24.660 rabbitmq> 2024-09-13 15:03:24.660466+00:00 [info] <0.254.0> Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries -15:03:24.660 rabbitmq> 2024-09-13 15:03:24.660466+00:00 [info] <0.254.0> Licensed under the MPL 2.0. Website: https://rabbitmq.com -15:03:24.662 rabbitmq> -15:03:24.662 rabbitmq> ## ## RabbitMQ 3.13.7 -15:03:24.662 rabbitmq> ## ## -15:03:24.662 rabbitmq> ########## Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries -15:03:24.662 rabbitmq> ###### ## -15:03:24.662 rabbitmq> ########## Licensed under the MPL 2.0. Website: https://rabbitmq.com -15:03:24.662 rabbitmq> -15:03:24.662 rabbitmq> Erlang: 26.2.5.3 [jit] -15:03:24.662 rabbitmq> TLS Library: OpenSSL - OpenSSL 3.1.7 3 Sep 2024 -15:03:24.662 rabbitmq> Release series support status: see https://www.rabbitmq.com/release-information -15:03:24.662 rabbitmq> -15:03:24.662 rabbitmq> Doc guides: https://www.rabbitmq.com/docs -15:03:24.662 rabbitmq> Support: https://www.rabbitmq.com/docs/contact -15:03:24.662 rabbitmq> Tutorials: https://www.rabbitmq.com/tutorials -15:03:24.662 rabbitmq> Monitoring: https://www.rabbitmq.com/docs/monitoring -15:03:24.662 rabbitmq> Upgrading: https://www.rabbitmq.com/docs/upgrade -15:03:24.662 rabbitmq> -15:03:24.662 rabbitmq> Logs: -15:03:24.662 rabbitmq> -15:03:24.662 rabbitmq> Config file(s): /etc/rabbitmq/conf.d/10-defaults.conf -15:03:24.662 rabbitmq> -15:03:24.665 rabbitmq> Starting broker...2024-09-13 15:03:24.663257+00:00 [info] <0.254.0> -15:03:24.665 rabbitmq> 2024-09-13 15:03:24.663257+00:00 [info] <0.254.0> node : rabbit@5be5395a1c9d -15:03:24.665 rabbitmq> 2024-09-13 15:03:24.663257+00:00 [info] <0.254.0> home dir : /var/lib/rabbitmq -15:03:24.665 rabbitmq> 2024-09-13 15:03:24.663257+00:00 [info] <0.254.0> config file(s) : /etc/rabbitmq/conf.d/10-defaults.conf -15:03:24.665 rabbitmq> 2024-09-13 15:03:24.663257+00:00 [info] <0.254.0> cookie hash : G3wnbms0cUY3zTx18aI//Q== -15:03:24.665 rabbitmq> 2024-09-13 15:03:24.663257+00:00 [info] <0.254.0> log(s) : -15:03:24.665 rabbitmq> 2024-09-13 15:03:24.663257+00:00 [info] <0.254.0> data dir : /var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d -15:03:25.016 rabbitmq> 2024-09-13 15:03:25.015840+00:00 [info] <0.254.0> Running boot step pre_boot defined by app rabbit -15:03:25.016 rabbitmq> 2024-09-13 15:03:25.015909+00:00 [info] <0.254.0> Running boot step rabbit_global_counters defined by app rabbit -15:03:25.017 rabbitmq> 2024-09-13 15:03:25.016433+00:00 [info] <0.254.0> Running boot step rabbit_osiris_metrics defined by app rabbit -15:03:25.017 rabbitmq> 2024-09-13 15:03:25.016546+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics defined by app rabbit -15:03:25.017 rabbitmq> 2024-09-13 15:03:25.016970+00:00 [info] <0.254.0> Running boot step rabbit_alarm defined by app rabbit -15:03:25.029 rabbitmq> 2024-09-13 15:03:25.029187+00:00 [info] <0.329.0> Memory high watermark set to 6399 MiB (6710412902 bytes) of 15998 MiB (16776032256 bytes) total -15:03:25.032 rabbitmq> 2024-09-13 15:03:25.032404+00:00 [info] <0.331.0> Enabling free disk space monitoring (disk free space: 969862926336, total memory: 16776032256) -15:03:25.032 rabbitmq> 2024-09-13 15:03:25.032461+00:00 [info] <0.331.0> Disk free limit set to 50MB -15:03:25.034 rabbitmq> 2024-09-13 15:03:25.034463+00:00 [info] <0.254.0> Running boot step code_server_cache defined by app rabbit -15:03:25.034 rabbitmq> 2024-09-13 15:03:25.034553+00:00 [info] <0.254.0> Running boot step file_handle_cache defined by app rabbit -15:03:25.042 rabbitmq> 2024-09-13 15:03:25.042595+00:00 [info] <0.334.0> Limiting to approx 1048479 file handles (943629 sockets) -15:03:25.043 rabbitmq> 2024-09-13 15:03:25.042820+00:00 [info] <0.335.0> FHC read buffering: OFF -15:03:25.043 rabbitmq> 2024-09-13 15:03:25.042861+00:00 [info] <0.335.0> FHC write buffering: ON -15:03:25.044 rabbitmq> 2024-09-13 15:03:25.043310+00:00 [info] <0.254.0> Running boot step worker_pool defined by app rabbit -15:03:25.044 rabbitmq> 2024-09-13 15:03:25.043445+00:00 [info] <0.315.0> Will use 4 processes for default worker pool -15:03:25.044 rabbitmq> 2024-09-13 15:03:25.043486+00:00 [info] <0.315.0> Starting worker pool 'worker_pool' with 4 processes in it -15:03:25.044 rabbitmq> 2024-09-13 15:03:25.043745+00:00 [info] <0.254.0> Running boot step database defined by app rabbit -15:03:25.044 rabbitmq> 2024-09-13 15:03:25.044080+00:00 [info] <0.254.0> Peer discovery: configured backend: rabbit_peer_discovery_classic_config -15:03:25.046 rabbitmq> 2024-09-13 15:03:25.045800+00:00 [notice] <0.316.0> Feature flags: attempt to enable `detailed_queues_endpoint`... -15:03:25.116 rabbitmq> 2024-09-13 15:03:25.116079+00:00 [notice] <0.316.0> Feature flags: `detailed_queues_endpoint` enabled -15:03:25.116 rabbitmq> 2024-09-13 15:03:25.116219+00:00 [notice] <0.316.0> Feature flags: attempt to enable `quorum_queue_non_voters`... -15:03:25.193 rabbitmq> 2024-09-13 15:03:25.193041+00:00 [notice] <0.316.0> Feature flags: `quorum_queue_non_voters` enabled -15:03:25.193 rabbitmq> 2024-09-13 15:03:25.193237+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_update_config_command`... -15:03:25.273 rabbitmq> 2024-09-13 15:03:25.273297+00:00 [notice] <0.316.0> Feature flags: `stream_update_config_command` enabled -15:03:25.273 rabbitmq> 2024-09-13 15:03:25.273479+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_filtering`... -15:03:25.355 rabbitmq> 2024-09-13 15:03:25.354594+00:00 [notice] <0.316.0> Feature flags: `stream_filtering` enabled -15:03:25.357 rabbitmq> 2024-09-13 15:03:25.354836+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_sac_coordinator_unblock_group`... -15:03:25.439 rabbitmq> 2024-09-13 15:03:25.439308+00:00 [notice] <0.316.0> Feature flags: `stream_sac_coordinator_unblock_group` enabled -15:03:25.439 rabbitmq> 2024-09-13 15:03:25.439483+00:00 [notice] <0.316.0> Feature flags: attempt to enable `restart_streams`... -15:03:25.522 rabbitmq> 2024-09-13 15:03:25.522492+00:00 [notice] <0.316.0> Feature flags: `restart_streams` enabled -15:03:25.523 rabbitmq> 2024-09-13 15:03:25.522921+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers`... -15:03:25.601 rabbitmq> 2024-09-13 15:03:25.601284+00:00 [notice] <0.316.0> Feature flags: `message_containers` enabled -15:03:25.601 rabbitmq> 2024-09-13 15:03:25.601459+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers_deaths_v2`... -15:03:25.676 rabbitmq> 2024-09-13 15:03:25.675974+00:00 [notice] <0.316.0> Feature flags: `message_containers_deaths_v2` enabled -15:03:25.676 rabbitmq> 2024-09-13 15:03:25.676232+00:00 [info] <0.254.0> DB: virgin node -> run peer discovery -15:03:25.676 rabbitmq> 2024-09-13 15:03:25.676293+00:00 [warning] <0.254.0> Classic peer discovery backend: list of nodes does not contain the local node [] -15:03:25.688 rabbitmq> 2024-09-13 15:03:25.687894+00:00 [notice] <0.44.0> Application mnesia exited with reason: stopped -15:03:26.001 rabbitmq> 2024-09-13 15:03:26.000986+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -15:03:26.001 rabbitmq> 2024-09-13 15:03:26.001135+00:00 [info] <0.254.0> Successfully synced tables from a peer -15:03:26.001 rabbitmq> 2024-09-13 15:03:26.001238+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -15:03:26.002 rabbitmq> 2024-09-13 15:03:26.001503+00:00 [info] <0.254.0> Successfully synced tables from a peer -15:03:26.025 rabbitmq> 2024-09-13 15:03:26.024781+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025020+00:00 [info] <0.254.0> Successfully synced tables from a peer -15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025152+00:00 [info] <0.254.0> Running boot step tracking_metadata_store defined by app rabbit -15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025254+00:00 [info] <0.558.0> Setting up a table for connection tracking on this node: tracked_connection -15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025335+00:00 [info] <0.558.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost -15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025426+00:00 [info] <0.558.0> Setting up a table for per-user connection counting on this node: tracked_connection_per_user -15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025468+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel -15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025541+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel_per_user -15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025607+00:00 [info] <0.254.0> Running boot step networking_metadata_store defined by app rabbit -15:03:26.025 rabbitmq> 2024-09-13 15:03:26.025711+00:00 [info] <0.254.0> Running boot step feature_flags defined by app rabbit -15:03:26.026 rabbitmq> 2024-09-13 15:03:26.025867+00:00 [info] <0.254.0> Running boot step codec_correctness_check defined by app rabbit -15:03:26.026 rabbitmq> 2024-09-13 15:03:26.025936+00:00 [info] <0.254.0> Running boot step external_infrastructure defined by app rabbit -15:03:26.026 rabbitmq> 2024-09-13 15:03:26.026010+00:00 [info] <0.254.0> Running boot step rabbit_event defined by app rabbit -15:03:26.027 rabbitmq> 2024-09-13 15:03:26.026192+00:00 [info] <0.254.0> Running boot step rabbit_registry defined by app rabbit -15:03:26.027 rabbitmq> 2024-09-13 15:03:26.026298+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit -15:03:26.028 rabbitmq> 2024-09-13 15:03:26.026359+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit -15:03:26.028 rabbitmq> 2024-09-13 15:03:26.026409+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit -15:03:26.028 rabbitmq> 2024-09-13 15:03:26.026482+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_direct defined by app rabbit -15:03:26.028 rabbitmq> 2024-09-13 15:03:26.026547+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit -15:03:26.028 rabbitmq> 2024-09-13 15:03:26.026616+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_headers defined by app rabbit -15:03:26.029 rabbitmq> 2024-09-13 15:03:26.026671+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_topic defined by app rabbit -15:03:26.029 rabbitmq> 2024-09-13 15:03:26.026730+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit -15:03:26.029 rabbitmq> 2024-09-13 15:03:26.026788+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit -15:03:26.032 rabbitmq> 2024-09-13 15:03:26.026830+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit -15:03:26.033 rabbitmq> 2024-09-13 15:03:26.026869+00:00 [info] <0.254.0> Running boot step rabbit_priority_queue defined by app rabbit -15:03:26.033 rabbitmq> 2024-09-13 15:03:26.026890+00:00 [info] <0.254.0> Priority queues enabled, real BQ is rabbit_variable_queue -15:03:26.034 rabbitmq> 2024-09-13 15:03:26.026928+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_client_local defined by app rabbit -15:03:26.034 rabbitmq> 2024-09-13 15:03:26.026962+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit -15:03:26.034 rabbitmq> 2024-09-13 15:03:26.026991+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_random defined by app rabbit -15:03:26.035 rabbitmq> 2024-09-13 15:03:26.027050+00:00 [info] <0.254.0> Running boot step kernel_ready defined by app rabbit -15:03:26.035 rabbitmq> 2024-09-13 15:03:26.027073+00:00 [info] <0.254.0> Running boot step rabbit_sysmon_minder defined by app rabbit -15:03:26.035 rabbitmq> 2024-09-13 15:03:26.027154+00:00 [info] <0.254.0> Running boot step rabbit_epmd_monitor defined by app rabbit -15:03:26.035 rabbitmq> 2024-09-13 15:03:26.028364+00:00 [info] <0.566.0> epmd monitor knows us, inter-node communication (distribution) port: 25672 -15:03:26.035 rabbitmq> 2024-09-13 15:03:26.028456+00:00 [info] <0.254.0> Running boot step guid_generator defined by app rabbit -15:03:26.036 rabbitmq> 2024-09-13 15:03:26.036196+00:00 [info] <0.254.0> Running boot step rabbit_node_monitor defined by app rabbit -15:03:26.036 rabbitmq> 2024-09-13 15:03:26.036513+00:00 [info] <0.570.0> Starting rabbit_node_monitor (in ignore mode) -15:03:26.037 rabbitmq> 2024-09-13 15:03:26.036660+00:00 [info] <0.254.0> Running boot step delegate_sup defined by app rabbit -15:03:26.038 rabbitmq> 2024-09-13 15:03:26.038013+00:00 [info] <0.254.0> Running boot step rabbit_memory_monitor defined by app rabbit -15:03:26.038 rabbitmq> 2024-09-13 15:03:26.038193+00:00 [info] <0.254.0> Running boot step rabbit_fifo_dlx_sup defined by app rabbit -15:03:26.038 rabbitmq> 2024-09-13 15:03:26.038265+00:00 [info] <0.254.0> Running boot step core_initialized defined by app rabbit -15:03:26.038 rabbitmq> 2024-09-13 15:03:26.038290+00:00 [info] <0.254.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit -15:03:26.038 rabbitmq> 2024-09-13 15:03:26.038329+00:00 [info] <0.254.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit -15:03:26.038 rabbitmq> 2024-09-13 15:03:26.038358+00:00 [info] <0.254.0> Running boot step rabbit_definitions_hashing defined by app rabbit -15:03:26.039 rabbitmq> 2024-09-13 15:03:26.038398+00:00 [info] <0.254.0> Running boot step rabbit_exchange_parameters defined by app rabbit -15:03:26.075 rabbitmq> 2024-09-13 15:03:26.074659+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit -15:03:26.075 rabbitmq> 2024-09-13 15:03:26.075014+00:00 [info] <0.254.0> Running boot step rabbit_policies defined by app rabbit -15:03:26.075 rabbitmq> 2024-09-13 15:03:26.075713+00:00 [info] <0.254.0> Running boot step rabbit_policy defined by app rabbit -15:03:26.076 rabbitmq> 2024-09-13 15:03:26.075791+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_validator defined by app rabbit -15:03:26.076 rabbitmq> 2024-09-13 15:03:26.076098+00:00 [info] <0.254.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit -15:03:26.076 rabbitmq> 2024-09-13 15:03:26.076172+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue defined by app rabbit -15:03:26.076 rabbitmq> 2024-09-13 15:03:26.076308+00:00 [info] <0.254.0> Running boot step rabbit_stream_coordinator defined by app rabbit -15:03:26.076 rabbitmq> 2024-09-13 15:03:26.076466+00:00 [info] <0.254.0> Running boot step rabbit_vhost_limit defined by app rabbit -15:03:26.077 rabbitmq> 2024-09-13 15:03:26.076517+00:00 [info] <0.254.0> Running boot step rabbit_federation_parameters defined by app rabbitmq_federation -15:03:26.077 rabbitmq> 2024-09-13 15:03:26.076586+00:00 [info] <0.254.0> Running boot step rabbit_federation_supervisor defined by app rabbitmq_federation -15:03:26.086 rabbitmq> 2024-09-13 15:03:26.085906+00:00 [info] <0.254.0> Running boot step rabbit_federation_queue defined by app rabbitmq_federation -15:03:26.086 rabbitmq> 2024-09-13 15:03:26.086041+00:00 [info] <0.254.0> Running boot step rabbit_federation_upstream_exchange defined by app rabbitmq_federation -15:03:26.086 rabbitmq> 2024-09-13 15:03:26.086131+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management -15:03:26.086 rabbitmq> 2024-09-13 15:03:26.086171+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent -15:03:26.087 rabbitmq> 2024-09-13 15:03:26.086197+00:00 [info] <0.254.0> Management plugin: using rates mode 'basic' -15:03:26.087 rabbitmq> 2024-09-13 15:03:26.087094+00:00 [info] <0.254.0> Running boot step recovery defined by app rabbit -15:03:26.101 rabbitmq> 2024-09-13 15:03:26.101243+00:00 [info] <0.254.0> Running boot step empty_db_check defined by app rabbit -15:03:26.101 rabbitmq> 2024-09-13 15:03:26.101326+00:00 [info] <0.254.0> Will seed default virtual host and user... -15:03:26.101 rabbitmq> 2024-09-13 15:03:26.101428+00:00 [info] <0.254.0> Adding vhost '/' (description: 'Default virtual host', tags: []) -15:03:26.159 rabbitmq> 2024-09-13 15:03:26.159090+00:00 [info] <0.630.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists -15:03:26.161 rabbitmq> 2024-09-13 15:03:26.161020+00:00 [info] <0.630.0> Setting segment_entry_count for vhost '/' with 0 queues to '2048' -15:03:26.179 rabbitmq> 2024-09-13 15:03:26.178911+00:00 [info] <0.630.0> Starting message stores for vhost '/' -15:03:26.179 rabbitmq> 2024-09-13 15:03:26.179138+00:00 [info] <0.639.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index -15:03:26.181 rabbitmq> 2024-09-13 15:03:26.181493+00:00 [info] <0.630.0> Started message store of type transient for vhost '/' -15:03:26.181 rabbitmq> 2024-09-13 15:03:26.181710+00:00 [info] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index -15:03:26.183 rabbitmq> 2024-09-13 15:03:26.183030+00:00 [warning] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch -15:03:26.184 rabbitmq> 2024-09-13 15:03:26.184004+00:00 [info] <0.630.0> Started message store of type persistent for vhost '/' -15:03:26.184 rabbitmq> 2024-09-13 15:03:26.184201+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_classic_queue took 22ms -15:03:26.184 rabbitmq> 2024-09-13 15:03:26.184246+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_quorum_queue took 0ms -15:03:26.184 rabbitmq> 2024-09-13 15:03:26.184311+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_stream_queue took 0ms -15:03:26.193 rabbitmq> 2024-09-13 15:03:26.192960+00:00 [info] <0.254.0> Created user 'guest' -15:03:26.200 rabbitmq> 2024-09-13 15:03:26.200288+00:00 [info] <0.254.0> Successfully set user tags for user 'guest' to [administrator] -15:03:26.208 rabbitmq> 2024-09-13 15:03:26.208088+00:00 [info] <0.254.0> Successfully set permissions for user 'guest' in virtual host '/' to '.*', '.*', '.*' -15:03:26.208 rabbitmq> 2024-09-13 15:03:26.208156+00:00 [info] <0.254.0> Running boot step rabbit_observer_cli defined by app rabbit -15:03:26.208 rabbitmq> 2024-09-13 15:03:26.208252+00:00 [info] <0.254.0> Running boot step rabbit_looking_glass defined by app rabbit -15:03:26.208 rabbitmq> 2024-09-13 15:03:26.208276+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics_gc defined by app rabbit -15:03:26.209 rabbitmq> 2024-09-13 15:03:26.208376+00:00 [info] <0.254.0> Running boot step background_gc defined by app rabbit -15:03:26.209 rabbitmq> 2024-09-13 15:03:26.208581+00:00 [info] <0.254.0> Running boot step routing_ready defined by app rabbit -15:03:26.209 rabbitmq> 2024-09-13 15:03:26.208621+00:00 [info] <0.254.0> Running boot step pre_flight defined by app rabbit -15:03:26.210 rabbitmq> 2024-09-13 15:03:26.208652+00:00 [info] <0.254.0> Running boot step notify_cluster defined by app rabbit -15:03:26.210 rabbitmq> 2024-09-13 15:03:26.208681+00:00 [info] <0.254.0> Running boot step networking defined by app rabbit -15:03:26.210 rabbitmq> 2024-09-13 15:03:26.208704+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue_periodic_membership_reconciliation defined by app rabbit -15:03:26.211 rabbitmq> 2024-09-13 15:03:26.208878+00:00 [info] <0.254.0> Running boot step definition_import_worker_pool defined by app rabbit -15:03:26.211 rabbitmq> 2024-09-13 15:03:26.208913+00:00 [info] <0.315.0> Starting worker pool 'definition_import_pool' with 4 processes in it -15:03:26.211 rabbitmq> 2024-09-13 15:03:26.209233+00:00 [info] <0.254.0> Running boot step cluster_name defined by app rabbit -15:03:26.211 rabbitmq> 2024-09-13 15:03:26.210941+00:00 [info] <0.254.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-xnww8pOg8DujX9MWkEpKGA' -15:03:26.218 rabbitmq> 2024-09-13 15:03:26.218571+00:00 [info] <0.254.0> Running boot step virtual_host_reconciliation defined by app rabbit -15:03:26.219 rabbitmq> 2024-09-13 15:03:26.218818+00:00 [info] <0.254.0> Running boot step direct_client defined by app rabbit -15:03:26.219 rabbitmq> 2024-09-13 15:03:26.218886+00:00 [info] <0.254.0> Running boot step rabbit_federation_exchange defined by app rabbitmq_federation -15:03:26.219 rabbitmq> 2024-09-13 15:03:26.219017+00:00 [info] <0.254.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management -15:03:26.219 rabbitmq> 2024-09-13 15:03:26.219165+00:00 [info] <0.680.0> Resetting node maintenance status -15:03:26.395 rabbitmq> 2024-09-13 15:03:26.394734+00:00 [warning] <0.709.0> Deprecated features: `management_metrics_collection`: Feature `management_metrics_collection` is deprecated. -15:03:26.395 rabbitmq> 2024-09-13 15:03:26.394734+00:00 [warning] <0.709.0> By default, this feature can still be used for now. -15:03:26.395 rabbitmq> 2024-09-13 15:03:26.394734+00:00 [warning] <0.709.0> Its use will not be permitted by default in a future minor RabbitMQ version and the feature will be removed from a future major RabbitMQ version; actual versions to be determined. -15:03:26.395 rabbitmq> 2024-09-13 15:03:26.394734+00:00 [warning] <0.709.0> To continue using this feature when it is not permitted by default, set the following parameter in your configuration: -15:03:26.395 rabbitmq> 2024-09-13 15:03:26.394734+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = true" -15:03:26.395 rabbitmq> 2024-09-13 15:03:26.394734+00:00 [warning] <0.709.0> To test RabbitMQ as if the feature was removed, set this in your configuration: -15:03:26.395 rabbitmq> 2024-09-13 15:03:26.394734+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = false" -15:03:29.379 rabbitmq> 2024-09-13 15:03:29.378779+00:00 [info] <0.746.0> Management plugin: HTTP (non-TLS) listener started on port 15672 -15:03:29.379 rabbitmq> 2024-09-13 15:03:29.378978+00:00 [info] <0.776.0> Statistics database started. -15:03:29.379 rabbitmq> 2024-09-13 15:03:29.379060+00:00 [info] <0.775.0> Starting worker pool 'management_worker_pool' with 3 processes in it -15:03:29.388 rabbitmq> 2024-09-13 15:03:29.387806+00:00 [info] <0.794.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692 -15:03:29.388 rabbitmq> 2024-09-13 15:03:29.387978+00:00 [info] <0.680.0> Ready to start client connection listeners -15:03:29.390 rabbitmq> 2024-09-13 15:03:29.390237+00:00 [info] <0.838.0> started TCP listener on [::]:5672 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waited on url http://localhost:15672 and on log out 'Server startup complete' 9568 ms -[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-4 -15:03:29.511 rabbitmq> completed with 5 plugins. -15:03:29.511 rabbitmq> 2024-09-13 15:03:29.511114+00:00 [info] <0.680.0> Server startup complete; 5 plugins started. -15:03:29.511 rabbitmq> 2024-09-13 15:03:29.511114+00:00 [info] <0.680.0> * rabbitmq_prometheus -15:03:29.511 rabbitmq> 2024-09-13 15:03:29.511114+00:00 [info] <0.680.0> * rabbitmq_federation -15:03:29.511 rabbitmq> 2024-09-13 15:03:29.511114+00:00 [info] <0.680.0> * rabbitmq_management -15:03:29.511 rabbitmq> 2024-09-13 15:03:29.511114+00:00 [info] <0.680.0> * rabbitmq_management_agent -15:03:29.511 rabbitmq> 2024-09-13 15:03:29.511114+00:00 [info] <0.680.0> * rabbitmq_web_dispatch -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Start container 6e9f1f0045bb -15:03:29.643 rabbitmq> 2024-09-13 15:03:29.642693+00:00 [info] <0.9.0> Time to start RabbitMQ: 9489 ms -15:03:30.901 sqs> -15:03:30.901 sqs> LocalStack version: 3.7.3.dev19 -15:03:30.901 sqs> LocalStack build date: 2024-09-13 -15:03:30.901 sqs> LocalStack build git hash: cb81582d8 -15:03:30.901 sqs> -15:03:31.496 sqs> Ready. -[INFO] DOCKER> Pattern 'Ready.' matched for container 6e9f1f0045bb -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Waited on log out 'Ready.' 2015 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container 8b00082480e3 -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Start container 5b96384fe09e -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waiting on url http://localhost:8082/health-check?type=READY with method HEAD for status 200..399. -15:03:33.018 worker-languagedetection> [2024-09-13 15:03:33.018Z #007.??? INFO - - ] startup.sh: Running startup scripts... -15:03:33.021 worker-languagedetection> [2024-09-13 15:03:33.020Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -15:03:33.028 worker-languagedetection> [2024-09-13 15:03:33.027Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -15:03:33.030 worker-languagedetection> [2024-09-13 15:03:33.029Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -15:03:33.038 worker-languagedetection> [2024-09-13 15:03:33.036Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -15:03:33.041 worker-languagedetection> [2024-09-13 15:03:33.040Z #007.??? INFO - - ] startup.sh: Startup scripts completed -15:03:33.044 worker-languagedetection> [2024-09-13 15:03:33.042Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -15:03:33.344 worker-languagedetection> 15:03:33,181 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -15:03:33.344 worker-languagedetection> 15:03:33,182 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -15:03:33.344 worker-languagedetection> 15:03:33,182 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -15:03:33.344 worker-languagedetection> 15:03:33,183 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -15:03:33.344 worker-languagedetection> 15:03:33,188 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -15:03:33.344 worker-languagedetection> 15:03:33,189 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -15:03:33.344 worker-languagedetection> 15:03:33,197 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 6 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -15:03:33.344 worker-languagedetection> 15:03:33,197 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -15:03:33.344 worker-languagedetection> 15:03:33,198 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -15:03:33.344 worker-languagedetection> 15:03:33,199 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -15:03:33.344 worker-languagedetection> 15:03:33,203 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -15:03:33.344 worker-languagedetection> 15:03:33,207 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -15:03:33.344 worker-languagedetection> 15:03:33,248 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -15:03:33.344 worker-languagedetection> 15:03:33,248 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -15:03:33.344 worker-languagedetection> 15:03:33,248 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -15:03:33.344 worker-languagedetection> 15:03:33,293 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -15:03:33.344 worker-languagedetection> 15:03:33,293 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -15:03:33.344 worker-languagedetection> 15:03:33,293 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -15:03:33.344 worker-languagedetection> 15:03:33,296 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -15:03:33.344 worker-languagedetection> 15:03:33,296 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -15:03:33.344 worker-languagedetection> 15:03:33,303 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -15:03:33.344 worker-languagedetection> 15:03:33,305 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -15:03:33.344 worker-languagedetection> 15:03:33,331 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -15:03:33.344 worker-languagedetection> 15:03:33,335 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -15:03:33.344 worker-languagedetection> 15:03:33,335 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -15:03:33.344 worker-languagedetection> 15:03:33,335 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -15:03:33.344 worker-languagedetection> 15:03:33,335 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -15:03:33.344 worker-languagedetection> 15:03:33,336 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -15:03:33.344 worker-languagedetection> 15:03:33,336 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -15:03:33.344 worker-languagedetection> 15:03:33,336 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -15:03:33.344 worker-languagedetection> 15:03:33,336 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 138 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY -15:03:33.344 worker-languagedetection> -15:03:33.535 worker-languagedetection> [2024-09-13 15:03:33.517Z #c8a.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -15:03:34.257 worker-languagedetection> [2024-09-13 15:03:34.257Z #c8a.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -15:03:34.258 worker-languagedetection> [2024-09-13 15:03:34.258Z #c8a.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -15:03:34.259 worker-languagedetection> [2024-09-13 15:03:34.259Z #c8a.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -15:03:34.272 worker-languagedetection> [2024-09-13 15:03:34.271Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -15:03:34.274 worker-languagedetection> [2024-09-13 15:03:34.274Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -15:03:34.275 worker-languagedetection> [2024-09-13 15:03:34.275Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -15:03:34.277 worker-languagedetection> [2024-09-13 15:03:34.276Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -15:03:34.284 worker-languagedetection> [2024-09-13 15:03:34.283Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -15:03:34.285 worker-languagedetection> [2024-09-13 15:03:34.285Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -15:03:34.286 worker-languagedetection> [2024-09-13 15:03:34.286Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -15:03:34.328 worker-languagedetection> [2024-09-13 15:03:34.327Z #c8a.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider -15:03:34.366 worker-languagedetection> [2024-09-13 15:03:34.362Z #c8a.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} -15:03:34.444 worker-languagedetection> [2024-09-13 15:03:34.443Z #c8a.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@65c33b92{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -15:03:34.444 worker-languagedetection> [2024-09-13 15:03:34.444Z #c8a.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@7903d448{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -15:03:34.446 worker-languagedetection> [2024-09-13 15:03:34.446Z #c8a.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS -15:03:34.456 worker-languagedetection> [2024-09-13 15:03:34.455Z #c8a.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. -15:03:34.473 worker-languagedetection> [2024-09-13 15:03:34.473Z #c8a.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE -15:03:34.476 worker-languagedetection> [2024-09-13 15:03:34.476Z #c8a.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY -15:03:34.477 worker-languagedetection> [2024-09-13 15:03:34.477Z #c8a.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY -15:03:34.494 worker-languagedetection> [2024-09-13 15:03:34.494Z #c8a.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY -15:03:34.494 worker-languagedetection> [2024-09-13 15:03:34.494Z #c8a.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE -15:03:34.495 worker-languagedetection> [2024-09-13 15:03:34.495Z #c8a.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY -15:03:34.496 worker-languagedetection> [2024-09-13 15:03:34.496Z #c8a.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE -15:03:34.498 worker-languagedetection> -15:03:34.788 worker-languagedetection> [2024-09-13 15:03:34.788Z #c8a.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} -15:03:34.790 worker-languagedetection> [2024-09-13 15:03:34.789Z #c8a.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@58f2466c{/,null,AVAILABLE} -15:03:34.793 worker-languagedetection> [2024-09-13 15:03:34.792Z #c8a.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} -15:03:34.793 worker-languagedetection> [2024-09-13 15:03:34.793Z #c8a.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@1376883{/,null,AVAILABLE} -15:03:34.801 worker-languagedetection> [2024-09-13 15:03:34.801Z #c8a.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@65c33b92{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -15:03:34.807 worker-languagedetection> [2024-09-13 15:03:34.806Z #c8a.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@7903d448{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -15:03:34.808 worker-languagedetection> [2024-09-13 15:03:34.808Z #c8a.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@43af351a{STARTING}[11.0.23,sto=30000] @1759ms -15:03:34.864 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:34 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 12 -15:03:35.368 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 -15:03:35.874 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:35 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 -15:03:36.387 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -15:03:36.891 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -15:03:37.405 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -15:03:37.909 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -15:03:38.415 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -15:03:38.928 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -15:03:39.437 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -15:03:39.953 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -15:03:40.455 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -15:03:40.961 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -15:03:41.466 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -15:03:41.970 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -15:03:42.483 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -15:03:42.991 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -15:03:43.497 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -15:03:44.005 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -15:03:44.518 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -15:03:45.024 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -15:03:45.538 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -15:03:46.051 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -15:03:46.560 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -15:03:47.072 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -15:03:47.585 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -15:03:48.091 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -15:03:48.597 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -15:03:49.103 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -15:03:49.497 worker-languagedetection> [2024-09-13 15:03:49.496Z #c8a.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE -15:03:49.543 rabbitmq> 2024-09-13 15:03:49.542892+00:00 [info] <0.845.0> accepting AMQP connection <0.845.0> (172.17.0.5:34968 -> 172.17.0.3:5672) -15:03:49.562 rabbitmq> 2024-09-13 15:03:49.561713+00:00 [info] <0.845.0> connection <0.845.0> (172.17.0.5:34968 -> 172.17.0.3:5672): user 'guest' authenticated and granted access to vhost '/' -15:03:49.570 worker-languagedetection> [2024-09-13 15:03:49.570Z #c8a.034 WARN - - ] c.h.c.util.rabbitmq.RabbitUtil: Priority is not supported with quorum queues -15:03:49.608 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -15:03:49.634 rabbitmq> 2024-09-13 15:03:49.633907+00:00 [notice] <0.866.0> queue 'LanguageDetectionWorker-input-1' in vhost '/': candidate -> leader in term: 1 machine version: 3 -15:03:49.634 rabbitmq> 2024-09-13 15:03:49.634145+00:00 [info] <0.860.0> ra: started cluster %2F_LanguageDetectionWorker-input-1 with 1 servers -15:03:49.634 rabbitmq> 2024-09-13 15:03:49.634145+00:00 [info] <0.860.0> 0 servers failed to start: [] -15:03:49.634 rabbitmq> 2024-09-13 15:03:49.634145+00:00 [info] <0.860.0> Leader: {'%2F_LanguageDetectionWorker-input-1',rabbit@5be5395a1c9d} -15:03:49.656 worker-languagedetection> [2024-09-13 15:03:49.656Z #c8a.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE -15:03:49.656 worker-languagedetection> [2024-09-13 15:03:49.656Z #c8a.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY -15:03:49.656 worker-languagedetection> [2024-09-13 15:03:49.656Z #c8a.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE -15:03:49.658 worker-languagedetection> [2024-09-13 15:03:49.657Z #c8a.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY -15:03:49.658 worker-languagedetection> [2024-09-13 15:03:49.657Z #c8a.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY -15:03:49.658 worker-languagedetection> [2024-09-13 15:03:49.657Z #c8a.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Waited on url http://localhost:8082/health-check?type=READY 17074 ms -15:03:50.113 worker-languagedetection> 192.168.1.1 - - [13/Sep/2024:15:03:50 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -[INFO] -[INFO] --- failsafe:3.1.2:integration-test (sqs-implementation-testing) @ worker-languagedetection-container --- -[INFO] Tests are skipped. -[INFO] -[INFO] --- failsafe:3.1.2:integration-test (rabbit-implementation-testing) @ worker-languagedetection-container --- -[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider -[INFO] -[INFO] ------------------------------------------------------- -[INFO] T E S T S -[INFO] ------------------------------------------------------- -[INFO] Running com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT -16:03:50,855 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -16:03:50,860 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - No custom configurators were discovered as a service. -16:03:50,860 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -16:03:50,862 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -16:03:50,869 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -16:03:50,870 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -16:03:50,878 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 9 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -16:03:50,878 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -16:03:50,880 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -16:03:50,881 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -16:03:50,885 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] -16:03:50,901 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@b2c9a9c - URL [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -16:03:50,977 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -16:03:50,977 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -16:03:50,977 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -16:03:51,069 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -16:03:51,069 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -16:03:51,069 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -16:03:51,080 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -16:03:51,080 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -16:03:51,093 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -16:03:51,095 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -16:03:51,191 |-INFO in ch.qos.logback.classic.pattern.DateConverter@fa4c865 - Setting zoneId to "UTC" -16:03:51,195 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -16:03:51,195 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -16:03:51,195 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -16:03:51,197 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -16:03:51,197 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -16:03:51,197 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@3bd82cf5 - End of configuration. -16:03:51,197 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@544fa968 - Registering current configuration as safe fallback point -16:03:51,198 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 317 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -15:03:52.960 rabbitmq> 2024-09-13 15:03:52.960431+00:00 [info] <0.871.0> accepting AMQP connection <0.871.0> (192.168.1.1:60066 -> 172.17.0.3:5672) -15:03:53.101 rabbitmq> 2024-09-13 15:03:53.101110+00:00 [info] <0.871.0> connection <0.871.0> (192.168.1.1:60066 -> 172.17.0.3:5672): user 'guest' authenticated and granted access to vhost '/' -15:03:53.175 rabbitmq> 2024-09-13 15:03:53.175265+00:00 [notice] <0.891.0> queue 'LanguageDetectionWorker-output-1' in vhost '/': candidate -> leader in term: 1 machine version: 3 -15:03:53.175 rabbitmq> 2024-09-13 15:03:53.175446+00:00 [info] <0.885.0> ra: started cluster %2F_LanguageDetectionWorker-output-1 with 1 servers -15:03:53.175 rabbitmq> 2024-09-13 15:03:53.175446+00:00 [info] <0.885.0> 0 servers failed to start: [] -15:03:53.175 rabbitmq> 2024-09-13 15:03:53.175446+00:00 [info] <0.885.0> Leader: {'%2F_LanguageDetectionWorker-output-1',rabbit@5be5395a1c9d} -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_field_multi_lang_en_fr_ger.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_multi_datasource.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_single_datasource.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_invalid.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple_multi.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_english.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_french.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_german.yaml.testcase - -=============== Starting test Item resultFormat_complex_invalid_combined.yaml ====================== -15:03:53.715 worker-languagedetection> [2024-09-13 15:03:53.715Z #c8a.054 WARN - - ] c.h.c.util.rabbitmq.RabbitUtil: Priority is not supported with quorum queues -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid_combined.yaml -================================================================================ -New deliveryresultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 1 -Number of successful test cases (all test instances passes): 1 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_invalid.yaml ====================== -15:03:53.837 worker-languagedetection> [2024-09-13 15:03:53.836Z #c8a.054 ERROR - - ] c.h.c.w.l.LanguageDetectionWorker: Failed to read result format specified. -================================================================================ - QUEUEING NEW TASK: resultFormat_invalid.yaml -================================================================================ -New deliveryresultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_invalid.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_invalid.yaml -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 2 -Number of successful test cases (all test instances passes): 2 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_simple.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_simple.yaml -================================================================================ -New deliveryresultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_simple.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_simple.yaml -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 3 -Number of successful test cases (all test instances passes): 3 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid_split.yaml -================================================================================ -New deliveryresultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 4 -Number of successful test cases (all test instances passes): 4 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_split.yaml -================================================================================ -New deliveryresultFormat_complex_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 5 -Number of successful test cases (all test instances passes): 5 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang.yaml -================================================================================ -New deliveryresultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 6 -Number of successful test cases (all test instances passes): 6 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang_split.yaml -================================================================================ -New deliveryresultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 7 -Number of successful test cases (all test instances passes): 7 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_lang_multi_datasource.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_lang_multi_datasource.yaml -================================================================================ -New deliverymulti_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_lang_multi_datasource.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 8 -Number of successful test cases (all test instances passes): 8 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item single_lang_english.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_english.yaml -================================================================================ -New deliverysingle_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_english.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_english.yaml -Description: null -Associated tickets: null -Comments: single_lang_english.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 9 -Number of successful test cases (all test instances passes): 9 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid.yaml -================================================================================ -New deliveryresultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 10 -Number of successful test cases (all test instances passes): 10 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_field_multi_lang_en_fr_ger.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_field_multi_lang_en_fr_ger.yaml -================================================================================ -New deliverymulti_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODE_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_FR_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_GER_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_field_multi_lang_en_fr_ger.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 11 -Number of successful test cases (all test instances passes): 11 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_simple_multi.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_simple_multi.yaml -================================================================================ -New deliveryresultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODE_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_FR_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_GER_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_simple_multi.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_simple_multi.yaml -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 12 -Number of successful test cases (all test instances passes): 12 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item single_lang_french.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_french.yaml -================================================================================ -New deliverysingle_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_french.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_french.yaml -Description: null -Associated tickets: null -Comments: single_lang_french.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 13 -Number of successful test cases (all test instances passes): 13 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown_split.yaml -================================================================================ -New deliveryresultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 14 -Number of successful test cases (all test instances passes): 14 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_lang_single_datasource.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_lang_single_datasource.yaml -================================================================================ -New deliverymulti_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_lang_single_datasource.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_lang_single_datasource.yaml -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 15 -Number of successful test cases (all test instances passes): 15 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_combined.yaml -================================================================================ -New deliveryresultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 16 -Number of successful test cases (all test instances passes): 16 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang_combined.yaml -================================================================================ -New deliveryresultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 17 -Number of successful test cases (all test instances passes): 17 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown.yaml -================================================================================ -New deliveryresultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 18 -Number of successful test cases (all test instances passes): 18 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item single_lang_german.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_german.yaml -================================================================================ -New deliverysingle_lang_german.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_german.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_german.yaml -Description: null -Associated tickets: null -Comments: single_lang_german.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_german.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_german.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 19 -Number of successful test cases (all test instances passes): 19 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex.yaml -================================================================================ -New deliveryresultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_german.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_german.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 20 -Number of successful test cases (all test instances passes): 20 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown_combined.yaml -================================================================================ -New deliveryresultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_german.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_german.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 21 -Number of successful test cases (all test instances passes): 21 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== -15:03:54.819 rabbitmq> 2024-09-13 15:03:54.818985+00:00 [info] <0.871.0> closing AMQP connection <0.871.0> (192.168.1.1:60066 -> 172.17.0.3:5672, vhost: '/', user: 'guest') -Closing queue connection -[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.256 s -- in com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT -[INFO] -[INFO] Results: -[INFO] -[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0 -[INFO] -[INFO] -[INFO] --- docker:0.43.4:stop (stop) @ worker-languagedetection-container --- -15:03:55.214 worker-languagedetection> [2024-09-13 15:03:55.213Z #c8a.033 INFO - - ] o.eclipse.jetty.server.Server: Stopped Server@43af351a{STOPPING}[11.0.23,sto=30000] -15:03:55.214 worker-languagedetection> [2024-09-13 15:03:55.214Z #c8a.033 INFO - - ] o.eclipse.jetty.server.Server: Shutdown Server@43af351a{STOPPING}[11.0.23,sto=30000] -15:03:55.216 worker-languagedetection> [2024-09-13 15:03:55.216Z #c8a.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped application@65c33b92{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -15:03:55.217 worker-languagedetection> [2024-09-13 15:03:55.217Z #c8a.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped admin@7903d448{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -15:03:55.218 worker-languagedetection> [2024-09-13 15:03:55.218Z #c8a.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@1376883{/,null,STOPPED} -15:03:55.226 worker-languagedetection> [2024-09-13 15:03:55.226Z #c8a.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@58f2466c{/,null,STOPPED} -15:03:55.228 worker-languagedetection> [2024-09-13 15:03:55.228Z #c8a.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stop requested, allowing in-progress tasks to complete. -15:03:55.241 rabbitmq> 2024-09-13 15:03:55.241224+00:00 [info] <0.845.0> closing AMQP connection <0.845.0> (172.17.0.5:34968 -> 172.17.0.3:5672, vhost: '/', user: 'guest') -15:03:55.241 worker-languagedetection> [2024-09-13 15:03:55.241Z #c8a.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stopped. -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "worker-languagedetection": Stop and removed container 5b96384fe09e after 0 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container 8b00082480e3 after 0 ms -15:03:56.476 sqs> Localstack runtime received signal 15 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Stop and removed container 6e9f1f0045bb after 0 ms -15:04:01.645 rabbitmq> 2024-09-13 15:04:01.645041+00:00 [notice] <0.64.0> SIGTERM received - shutting down -15:04:01.645 rabbitmq> 2024-09-13 15:04:01.645041+00:00 [notice] <0.64.0> -15:04:01.647 rabbitmq> 2024-09-13 15:04:01.646789+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_prometheus_tls -15:04:01.653 rabbitmq> 2024-09-13 15:04:01.652633+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_management_tls -15:04:01.662 rabbitmq> 2024-09-13 15:04:01.661734+00:00 [info] <0.838.0> stopped TCP listener on [::]:5672 -15:04:01.663 rabbitmq> 2024-09-13 15:04:01.662658+00:00 [info] <0.630.0> Virtual host '/' is stopping -15:04:01.663 rabbitmq> 2024-09-13 15:04:01.662773+00:00 [info] <0.926.0> Closing all connections in vhost '/' on node 'rabbit@5be5395a1c9d' because the vhost is stopping -15:04:01.663 rabbitmq> 2024-09-13 15:04:01.662864+00:00 [info] <0.643.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' -15:04:01.674 rabbitmq> 2024-09-13 15:04:01.673951+00:00 [info] <0.643.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' is stopped -15:04:01.674 rabbitmq> 2024-09-13 15:04:01.674104+00:00 [info] <0.639.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' -15:04:01.684 rabbitmq> 2024-09-13 15:04:01.684146+00:00 [info] <0.639.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@5be5395a1c9d/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' is stopped -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Stop and removed container 5be5395a1c9d after 0 ms -15:04:03.914 webdav> ++ _term -15:04:03.914 webdav> ++ echo 'Caught SIGTERM signal!' -15:04:03.914 webdav> ++ kill -TERM '' -15:04:03.914 webdav> Caught SIGTERM signal! -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container 9d60a115a88a after 0 ms -[INFO] -[INFO] --- license:4.3:check (check-license-headers) @ worker-languagedetection-container --- -[INFO] Checking licenses... -[INFO] -[INFO] --- dependency:3.6.0:analyze-only (check-dependencies) @ worker-languagedetection-container --- -[INFO] Skipping pom project -[INFO] -[INFO] --- duplicate-finder:2.0.1:check (deepcheck-dependencies) @ worker-languagedetection-container --- -[INFO] Ignoring POM project! -[INFO] -[INFO] --- failsafe:3.1.2:verify (sqs-implementation-testing) @ worker-languagedetection-container --- -[INFO] Tests are skipped. -[INFO] -[INFO] --- failsafe:3.1.2:verify (rabbit-implementation-testing) @ worker-languagedetection-container --- -[INFO] -[INFO] --- install:3.1.1:install (default-install) @ worker-languagedetection-container --- -[INFO] Skipping artifact installation -[INFO] -[INFO] --- docker-versions:1.0.0-29:depopulate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD SUCCESS -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 02:29 min -[INFO] Finished at: 2024-09-13T16:04:06+01:00 -[INFO] ------------------------------------------------------------------------ diff --git a/worker-languagedetection-container/build.log b/worker-languagedetection-container/build.log new file mode 100644 index 0000000..4c89479 --- /dev/null +++ b/worker-languagedetection-container/build.log @@ -0,0 +1,13050 @@ + +[INFO] Scanning for projects... +[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] +[INFO] Inspecting build with total of 1 modules... +[INFO] Installing Nexus Staging features: +[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin +[INFO] +[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- +[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT +[INFO] from pom.xml +[INFO] --------------------------------[ pom ]--------------------------------- +[INFO] +[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] +[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net +[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... +[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] +[INFO] +[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- +[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target +[INFO] +[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- +[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed +[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed +[INFO] +[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- +[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, runOnlyAtExecutionRoot: true +[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container +[INFO] Git info extracted in 307ms, revision: '33590f6', branch: 'US922349', tag: '', commitsCount: '291', commitDate: '2024-09-13', buildDate: '2024-09-16', buildnumber: 'US922349.291.33590f6' +[INFO] +[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- +[INFO] Using plugin classloader, includes GMavenPlus and project classpath. +[INFO] Using Groovy 3.0.19 to perform execute. +[INFO] +[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- +[INFO] Updating license headers... +[INFO] +[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- +[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar +[INFO] +[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- +[INFO] Copying 2 resources from src/main/config to target/config-files +[INFO] +[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- +[INFO] +[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- +[INFO] Changes detected - recompiling the module! :source +[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes +[INFO] +[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- +[INFO] +[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- +[INFO] Not executing Javadoc as the project is not a Java classpath-capable package +[INFO] +[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container b5296a810364 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:32882 with method HEAD for status 200..399. +09:45:20.936 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf +09:45:20.937 webdav> + getent passwd 33 +09:45:20.938 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin +09:45:20.938 webdav> + useradd -r webdav -u 33 -g 33 +09:45:20.972 webdav> useradd: UID 33 is not unique +09:45:20.973 webdav> + mkdir -p /srv/common/webdav +09:45:20.976 webdav> + chown 33 /srv/common/webdav +09:45:20.977 webdav> + trap _term SIGTERM +09:45:20.977 webdav> + pid=12 +09:45:20.977 webdav> + wait 12 +09:45:20.978 webdav> + /usr/sbin/apache2 -D FOREGROUND +09:45:20.988 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +09:45:20.991 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message +09:45:20.994 webdav> [Mon Sep 16 09:45:20.993795 2024] [mpm_event:notice] [pid 12:tid 139666665211776] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations +09:45:20.994 webdav> [Mon Sep 16 09:45:20.994230 2024] [core:notice] [pid 12:tid 139666665211776] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' +09:45:21.081 webdav> 172.17.0.2:80 192.168.1.1 - - [16/Sep/2024:09:45:21 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:32882 and on log out 'WebDAV Server startup complete' 93 ms +[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Start container e01077a63a2a +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waiting on url http://localhost:32883 with method HEAD for status 200..399. +09:45:24.600 rabbitmq> 2024-09-16 09:45:24.594088+00:00 [notice] <0.44.0> Application syslog exited with reason: stopped +09:45:24.600 rabbitmq> 2024-09-16 09:45:24.599688+00:00 [notice] <0.254.0> Logging: switching to configured handler(s); following messages may not be visible in this log output +09:45:24.600 rabbitmq> 2024-09-16 09:45:24.600292+00:00 [notice] <0.254.0> Logging: configured log handlers are now ACTIVE +09:45:24.618 rabbitmq> 2024-09-16 09:45:24.618016+00:00 [info] <0.254.0> ra: starting system quorum_queues +09:45:24.618 rabbitmq> 2024-09-16 09:45:24.618094+00:00 [info] <0.254.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/quorum/rabbit@e01077a63a2a +09:45:24.684 rabbitmq> 2024-09-16 09:45:24.683848+00:00 [info] <0.268.0> ra system 'quorum_queues' running pre init for 0 registered servers +09:45:24.694 rabbitmq> 2024-09-16 09:45:24.694525+00:00 [info] <0.269.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered +09:45:24.710 rabbitmq> 2024-09-16 09:45:24.710118+00:00 [notice] <0.274.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables +09:45:24.734 rabbitmq> 2024-09-16 09:45:24.733917+00:00 [info] <0.254.0> ra: starting system coordination +09:45:24.734 rabbitmq> 2024-09-16 09:45:24.733968+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/coordination/rabbit@e01077a63a2a +09:45:24.736 rabbitmq> 2024-09-16 09:45:24.736300+00:00 [info] <0.282.0> ra system 'coordination' running pre init for 0 registered servers +09:45:24.739 rabbitmq> 2024-09-16 09:45:24.738816+00:00 [info] <0.283.0> ra: meta data store initialised for system coordination. 0 record(s) recovered +09:45:24.739 rabbitmq> 2024-09-16 09:45:24.739162+00:00 [notice] <0.288.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables +09:45:24.748 rabbitmq> 2024-09-16 09:45:24.747606+00:00 [info] <0.254.0> ra: starting system coordination +09:45:24.748 rabbitmq> 2024-09-16 09:45:24.747660+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/coordination/rabbit@e01077a63a2a +09:45:24.858 rabbitmq> 2024-09-16 09:45:24.857945+00:00 [info] <0.254.0> Waiting for Khepri leader for 30000 ms, 9 retries left +09:45:24.877 rabbitmq> 2024-09-16 09:45:24.877395+00:00 [notice] <0.292.0> RabbitMQ metadata store: candidate -> leader in term: 1 machine version: 1 +09:45:24.885 rabbitmq> 2024-09-16 09:45:24.884892+00:00 [info] <0.254.0> Khepri leader elected +09:45:24.885 rabbitmq> 2024-09-16 09:45:24.884941+00:00 [info] <0.254.0> Waiting for Khepri projections for 30000 ms, 9 retries left +09:45:25.255 rabbitmq> 2024-09-16 09:45:25.255284+00:00 [info] <0.254.0> +09:45:25.255 rabbitmq> 2024-09-16 09:45:25.255284+00:00 [info] <0.254.0> Starting RabbitMQ 3.13.7 on Erlang 26.2.5.3 [jit] +09:45:25.255 rabbitmq> 2024-09-16 09:45:25.255284+00:00 [info] <0.254.0> Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries +09:45:25.255 rabbitmq> 2024-09-16 09:45:25.255284+00:00 [info] <0.254.0> Licensed under the MPL 2.0. Website: https://rabbitmq.com +09:45:25.257 rabbitmq> +09:45:25.257 rabbitmq> ## ## RabbitMQ 3.13.7 +09:45:25.257 rabbitmq> ## ## +09:45:25.257 rabbitmq> ########## Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries +09:45:25.257 rabbitmq> ###### ## +09:45:25.257 rabbitmq> ########## Licensed under the MPL 2.0. Website: https://rabbitmq.com +09:45:25.257 rabbitmq> +09:45:25.257 rabbitmq> Erlang: 26.2.5.3 [jit] +09:45:25.257 rabbitmq> TLS Library: OpenSSL - OpenSSL 3.1.7 3 Sep 2024 +09:45:25.257 rabbitmq> Release series support status: see https://www.rabbitmq.com/release-information +09:45:25.257 rabbitmq> +09:45:25.257 rabbitmq> Doc guides: https://www.rabbitmq.com/docs +09:45:25.257 rabbitmq> Support: https://www.rabbitmq.com/docs/contact +09:45:25.257 rabbitmq> Tutorials: https://www.rabbitmq.com/tutorials +09:45:25.257 rabbitmq> Monitoring: https://www.rabbitmq.com/docs/monitoring +09:45:25.257 rabbitmq> Upgrading: https://www.rabbitmq.com/docs/upgrade +09:45:25.257 rabbitmq> +09:45:25.257 rabbitmq> Logs: +09:45:25.257 rabbitmq> +09:45:25.257 rabbitmq> Config file(s): /etc/rabbitmq/conf.d/10-defaults.conf +09:45:25.257 rabbitmq> +09:45:25.263 rabbitmq> Starting broker...2024-09-16 09:45:25.259483+00:00 [info] <0.254.0> +09:45:25.263 rabbitmq> 2024-09-16 09:45:25.259483+00:00 [info] <0.254.0> node : rabbit@e01077a63a2a +09:45:25.263 rabbitmq> 2024-09-16 09:45:25.259483+00:00 [info] <0.254.0> home dir : /var/lib/rabbitmq +09:45:25.263 rabbitmq> 2024-09-16 09:45:25.259483+00:00 [info] <0.254.0> config file(s) : /etc/rabbitmq/conf.d/10-defaults.conf +09:45:25.263 rabbitmq> 2024-09-16 09:45:25.259483+00:00 [info] <0.254.0> cookie hash : ZVH215IMOyuLBy9RiZqTFA== +09:45:25.263 rabbitmq> 2024-09-16 09:45:25.259483+00:00 [info] <0.254.0> log(s) : +09:45:25.263 rabbitmq> 2024-09-16 09:45:25.259483+00:00 [info] <0.254.0> data dir : /var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a +09:45:25.567 rabbitmq> 2024-09-16 09:45:25.566913+00:00 [info] <0.254.0> Running boot step pre_boot defined by app rabbit +09:45:25.567 rabbitmq> 2024-09-16 09:45:25.566975+00:00 [info] <0.254.0> Running boot step rabbit_global_counters defined by app rabbit +09:45:25.567 rabbitmq> 2024-09-16 09:45:25.567262+00:00 [info] <0.254.0> Running boot step rabbit_osiris_metrics defined by app rabbit +09:45:25.567 rabbitmq> 2024-09-16 09:45:25.567360+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics defined by app rabbit +09:45:25.567 rabbitmq> 2024-09-16 09:45:25.567772+00:00 [info] <0.254.0> Running boot step rabbit_alarm defined by app rabbit +09:45:25.582 rabbitmq> 2024-09-16 09:45:25.581595+00:00 [info] <0.329.0> Memory high watermark set to 6399 MiB (6710414540 bytes) of 15998 MiB (16776036352 bytes) total +09:45:25.585 rabbitmq> 2024-09-16 09:45:25.585388+00:00 [info] <0.331.0> Enabling free disk space monitoring (disk free space: 968545931264, total memory: 16776036352) +09:45:25.585 rabbitmq> 2024-09-16 09:45:25.585441+00:00 [info] <0.331.0> Disk free limit set to 50MB +09:45:25.588 rabbitmq> 2024-09-16 09:45:25.587923+00:00 [info] <0.254.0> Running boot step code_server_cache defined by app rabbit +09:45:25.588 rabbitmq> 2024-09-16 09:45:25.588008+00:00 [info] <0.254.0> Running boot step file_handle_cache defined by app rabbit +09:45:25.598 rabbitmq> 2024-09-16 09:45:25.597550+00:00 [info] <0.334.0> Limiting to approx 1048479 file handles (943629 sockets) +09:45:25.598 rabbitmq> 2024-09-16 09:45:25.597870+00:00 [info] <0.335.0> FHC read buffering: OFF +09:45:25.598 rabbitmq> 2024-09-16 09:45:25.597926+00:00 [info] <0.335.0> FHC write buffering: ON +09:45:25.599 rabbitmq> 2024-09-16 09:45:25.598768+00:00 [info] <0.254.0> Running boot step worker_pool defined by app rabbit +09:45:25.599 rabbitmq> 2024-09-16 09:45:25.598939+00:00 [info] <0.315.0> Will use 4 processes for default worker pool +09:45:25.600 rabbitmq> 2024-09-16 09:45:25.599015+00:00 [info] <0.315.0> Starting worker pool 'worker_pool' with 4 processes in it +09:45:25.600 rabbitmq> 2024-09-16 09:45:25.599649+00:00 [info] <0.254.0> Running boot step database defined by app rabbit +09:45:25.600 rabbitmq> 2024-09-16 09:45:25.600048+00:00 [info] <0.254.0> Peer discovery: configured backend: rabbit_peer_discovery_classic_config +09:45:25.604 rabbitmq> 2024-09-16 09:45:25.602937+00:00 [notice] <0.316.0> Feature flags: attempt to enable `detailed_queues_endpoint`... +09:45:25.669 rabbitmq> 2024-09-16 09:45:25.669068+00:00 [notice] <0.316.0> Feature flags: `detailed_queues_endpoint` enabled +09:45:25.670 rabbitmq> 2024-09-16 09:45:25.669198+00:00 [notice] <0.316.0> Feature flags: attempt to enable `quorum_queue_non_voters`... +09:45:25.737 rabbitmq> 2024-09-16 09:45:25.737505+00:00 [notice] <0.316.0> Feature flags: `quorum_queue_non_voters` enabled +09:45:25.738 rabbitmq> 2024-09-16 09:45:25.737686+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_update_config_command`... +09:45:25.807 rabbitmq> 2024-09-16 09:45:25.806821+00:00 [notice] <0.316.0> Feature flags: `stream_update_config_command` enabled +09:45:25.807 rabbitmq> 2024-09-16 09:45:25.807043+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_filtering`... +09:45:25.874 rabbitmq> 2024-09-16 09:45:25.874130+00:00 [notice] <0.316.0> Feature flags: `stream_filtering` enabled +09:45:25.876 rabbitmq> 2024-09-16 09:45:25.874334+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_sac_coordinator_unblock_group`... +09:45:25.944 rabbitmq> 2024-09-16 09:45:25.942191+00:00 [notice] <0.316.0> Feature flags: `stream_sac_coordinator_unblock_group` enabled +09:45:25.944 rabbitmq> 2024-09-16 09:45:25.942349+00:00 [notice] <0.316.0> Feature flags: attempt to enable `restart_streams`... +09:45:26.011 rabbitmq> 2024-09-16 09:45:26.011084+00:00 [notice] <0.316.0> Feature flags: `restart_streams` enabled +09:45:26.013 rabbitmq> 2024-09-16 09:45:26.011252+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers`... +09:45:26.086 rabbitmq> 2024-09-16 09:45:26.079648+00:00 [notice] <0.316.0> Feature flags: `message_containers` enabled +09:45:26.086 rabbitmq> 2024-09-16 09:45:26.079782+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers_deaths_v2`... +09:45:26.145 rabbitmq> 2024-09-16 09:45:26.145369+00:00 [notice] <0.316.0> Feature flags: `message_containers_deaths_v2` enabled +09:45:26.145 rabbitmq> 2024-09-16 09:45:26.145624+00:00 [info] <0.254.0> DB: virgin node -> run peer discovery +09:45:26.146 rabbitmq> 2024-09-16 09:45:26.145663+00:00 [warning] <0.254.0> Classic peer discovery backend: list of nodes does not contain the local node [] +09:45:26.159 rabbitmq> 2024-09-16 09:45:26.158975+00:00 [notice] <0.44.0> Application mnesia exited with reason: stopped +09:45:26.478 rabbitmq> 2024-09-16 09:45:26.477347+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +09:45:26.478 rabbitmq> 2024-09-16 09:45:26.477648+00:00 [info] <0.254.0> Successfully synced tables from a peer +09:45:26.478 rabbitmq> 2024-09-16 09:45:26.477873+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +09:45:26.478 rabbitmq> 2024-09-16 09:45:26.477991+00:00 [info] <0.254.0> Successfully synced tables from a peer +09:45:26.505 rabbitmq> 2024-09-16 09:45:26.504670+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left +09:45:26.505 rabbitmq> 2024-09-16 09:45:26.504966+00:00 [info] <0.254.0> Successfully synced tables from a peer +09:45:26.506 rabbitmq> 2024-09-16 09:45:26.505248+00:00 [info] <0.254.0> Running boot step tracking_metadata_store defined by app rabbit +09:45:26.506 rabbitmq> 2024-09-16 09:45:26.505379+00:00 [info] <0.558.0> Setting up a table for connection tracking on this node: tracked_connection +09:45:26.506 rabbitmq> 2024-09-16 09:45:26.505443+00:00 [info] <0.558.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.505505+00:00 [info] <0.558.0> Setting up a table for per-user connection counting on this node: tracked_connection_per_user +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.505576+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.505633+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel_per_user +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.505744+00:00 [info] <0.254.0> Running boot step networking_metadata_store defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.505874+00:00 [info] <0.254.0> Running boot step feature_flags defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506119+00:00 [info] <0.254.0> Running boot step codec_correctness_check defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506165+00:00 [info] <0.254.0> Running boot step external_infrastructure defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506191+00:00 [info] <0.254.0> Running boot step rabbit_event defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506298+00:00 [info] <0.254.0> Running boot step rabbit_registry defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506345+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506418+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506451+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506522+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_direct defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506558+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506589+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_headers defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506636+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_topic defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506689+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506726+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506767+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506818+00:00 [info] <0.254.0> Running boot step rabbit_priority_queue defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506900+00:00 [info] <0.254.0> Priority queues enabled, real BQ is rabbit_variable_queue +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506973+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_client_local defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.507069+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit +09:45:26.507 rabbitmq> 2024-09-16 09:45:26.507182+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_random defined by app rabbit +09:45:26.510 rabbitmq> 2024-09-16 09:45:26.508857+00:00 [info] <0.254.0> Running boot step kernel_ready defined by app rabbit +09:45:26.510 rabbitmq> 2024-09-16 09:45:26.508934+00:00 [info] <0.254.0> Running boot step rabbit_sysmon_minder defined by app rabbit +09:45:26.510 rabbitmq> 2024-09-16 09:45:26.509086+00:00 [info] <0.254.0> Running boot step rabbit_epmd_monitor defined by app rabbit +09:45:26.511 rabbitmq> 2024-09-16 09:45:26.510709+00:00 [info] <0.566.0> epmd monitor knows us, inter-node communication (distribution) port: 25672 +09:45:26.511 rabbitmq> 2024-09-16 09:45:26.510818+00:00 [info] <0.254.0> Running boot step guid_generator defined by app rabbit +09:45:26.519 rabbitmq> 2024-09-16 09:45:26.518520+00:00 [info] <0.254.0> Running boot step rabbit_node_monitor defined by app rabbit +09:45:26.519 rabbitmq> 2024-09-16 09:45:26.518796+00:00 [info] <0.570.0> Starting rabbit_node_monitor (in ignore mode) +09:45:26.519 rabbitmq> 2024-09-16 09:45:26.518927+00:00 [info] <0.254.0> Running boot step delegate_sup defined by app rabbit +09:45:26.520 rabbitmq> 2024-09-16 09:45:26.519330+00:00 [info] <0.254.0> Running boot step rabbit_memory_monitor defined by app rabbit +09:45:26.520 rabbitmq> 2024-09-16 09:45:26.520231+00:00 [info] <0.254.0> Running boot step rabbit_fifo_dlx_sup defined by app rabbit +09:45:26.521 rabbitmq> 2024-09-16 09:45:26.520624+00:00 [info] <0.254.0> Running boot step core_initialized defined by app rabbit +09:45:26.521 rabbitmq> 2024-09-16 09:45:26.520682+00:00 [info] <0.254.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit +09:45:26.521 rabbitmq> 2024-09-16 09:45:26.520733+00:00 [info] <0.254.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit +09:45:26.522 rabbitmq> 2024-09-16 09:45:26.520799+00:00 [info] <0.254.0> Running boot step rabbit_definitions_hashing defined by app rabbit +09:45:26.523 rabbitmq> 2024-09-16 09:45:26.520936+00:00 [info] <0.254.0> Running boot step rabbit_exchange_parameters defined by app rabbit +09:45:26.563 rabbitmq> 2024-09-16 09:45:26.563329+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit +09:45:26.564 rabbitmq> 2024-09-16 09:45:26.563837+00:00 [info] <0.254.0> Running boot step rabbit_policies defined by app rabbit +09:45:26.564 rabbitmq> 2024-09-16 09:45:26.564081+00:00 [info] <0.254.0> Running boot step rabbit_policy defined by app rabbit +09:45:26.564 rabbitmq> 2024-09-16 09:45:26.564179+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_validator defined by app rabbit +09:45:26.564 rabbitmq> 2024-09-16 09:45:26.564391+00:00 [info] <0.254.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit +09:45:26.564 rabbitmq> 2024-09-16 09:45:26.564445+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue defined by app rabbit +09:45:26.565 rabbitmq> 2024-09-16 09:45:26.564502+00:00 [info] <0.254.0> Running boot step rabbit_stream_coordinator defined by app rabbit +09:45:26.565 rabbitmq> 2024-09-16 09:45:26.564571+00:00 [info] <0.254.0> Running boot step rabbit_vhost_limit defined by app rabbit +09:45:26.565 rabbitmq> 2024-09-16 09:45:26.564619+00:00 [info] <0.254.0> Running boot step rabbit_federation_parameters defined by app rabbitmq_federation +09:45:26.565 rabbitmq> 2024-09-16 09:45:26.565111+00:00 [info] <0.254.0> Running boot step rabbit_federation_supervisor defined by app rabbitmq_federation +09:45:26.575 rabbitmq> 2024-09-16 09:45:26.575438+00:00 [info] <0.254.0> Running boot step rabbit_federation_queue defined by app rabbitmq_federation +09:45:26.575 rabbitmq> 2024-09-16 09:45:26.575667+00:00 [info] <0.254.0> Running boot step rabbit_federation_upstream_exchange defined by app rabbitmq_federation +09:45:26.575 rabbitmq> 2024-09-16 09:45:26.575763+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management +09:45:26.575 rabbitmq> 2024-09-16 09:45:26.575817+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent +09:45:26.575 rabbitmq> 2024-09-16 09:45:26.575845+00:00 [info] <0.254.0> Management plugin: using rates mode 'basic' +09:45:26.577 rabbitmq> 2024-09-16 09:45:26.576904+00:00 [info] <0.254.0> Running boot step recovery defined by app rabbit +09:45:26.592 rabbitmq> 2024-09-16 09:45:26.591698+00:00 [info] <0.254.0> Running boot step empty_db_check defined by app rabbit +09:45:26.592 rabbitmq> 2024-09-16 09:45:26.591819+00:00 [info] <0.254.0> Will seed default virtual host and user... +09:45:26.592 rabbitmq> 2024-09-16 09:45:26.591977+00:00 [info] <0.254.0> Adding vhost '/' (description: 'Default virtual host', tags: []) +09:45:26.649 rabbitmq> 2024-09-16 09:45:26.649412+00:00 [info] <0.630.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists +09:45:26.651 rabbitmq> 2024-09-16 09:45:26.651335+00:00 [info] <0.630.0> Setting segment_entry_count for vhost '/' with 0 queues to '2048' +09:45:26.671 rabbitmq> 2024-09-16 09:45:26.670871+00:00 [info] <0.630.0> Starting message stores for vhost '/' +09:45:26.672 rabbitmq> 2024-09-16 09:45:26.671511+00:00 [info] <0.639.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index +09:45:26.676 rabbitmq> 2024-09-16 09:45:26.675343+00:00 [info] <0.630.0> Started message store of type transient for vhost '/' +09:45:26.676 rabbitmq> 2024-09-16 09:45:26.675887+00:00 [info] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index +09:45:26.679 rabbitmq> 2024-09-16 09:45:26.678659+00:00 [warning] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch +09:45:26.682 rabbitmq> 2024-09-16 09:45:26.681334+00:00 [info] <0.630.0> Started message store of type persistent for vhost '/' +09:45:26.682 rabbitmq> 2024-09-16 09:45:26.681688+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_classic_queue took 29ms +09:45:26.682 rabbitmq> 2024-09-16 09:45:26.681797+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_quorum_queue took 0ms +09:45:26.683 rabbitmq> 2024-09-16 09:45:26.681895+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_stream_queue took 0ms +09:45:26.692 rabbitmq> 2024-09-16 09:45:26.691512+00:00 [info] <0.254.0> Created user 'guest' +09:45:26.700 rabbitmq> 2024-09-16 09:45:26.700259+00:00 [info] <0.254.0> Successfully set user tags for user 'guest' to [administrator] +09:45:26.708 rabbitmq> 2024-09-16 09:45:26.707803+00:00 [info] <0.254.0> Successfully set permissions for user 'guest' in virtual host '/' to '.*', '.*', '.*' +09:45:26.708 rabbitmq> 2024-09-16 09:45:26.707916+00:00 [info] <0.254.0> Running boot step rabbit_observer_cli defined by app rabbit +09:45:26.708 rabbitmq> 2024-09-16 09:45:26.708065+00:00 [info] <0.254.0> Running boot step rabbit_looking_glass defined by app rabbit +09:45:26.708 rabbitmq> 2024-09-16 09:45:26.708096+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics_gc defined by app rabbit +09:45:26.708 rabbitmq> 2024-09-16 09:45:26.708248+00:00 [info] <0.254.0> Running boot step background_gc defined by app rabbit +09:45:26.708 rabbitmq> 2024-09-16 09:45:26.708404+00:00 [info] <0.254.0> Running boot step routing_ready defined by app rabbit +09:45:26.708 rabbitmq> 2024-09-16 09:45:26.708451+00:00 [info] <0.254.0> Running boot step pre_flight defined by app rabbit +09:45:26.708 rabbitmq> 2024-09-16 09:45:26.708583+00:00 [info] <0.254.0> Running boot step notify_cluster defined by app rabbit +09:45:26.708 rabbitmq> 2024-09-16 09:45:26.708634+00:00 [info] <0.254.0> Running boot step networking defined by app rabbit +09:45:26.709 rabbitmq> 2024-09-16 09:45:26.708799+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue_periodic_membership_reconciliation defined by app rabbit +09:45:26.709 rabbitmq> 2024-09-16 09:45:26.709109+00:00 [info] <0.254.0> Running boot step definition_import_worker_pool defined by app rabbit +09:45:26.709 rabbitmq> 2024-09-16 09:45:26.709157+00:00 [info] <0.315.0> Starting worker pool 'definition_import_pool' with 4 processes in it +09:45:26.709 rabbitmq> 2024-09-16 09:45:26.709605+00:00 [info] <0.254.0> Running boot step cluster_name defined by app rabbit +09:45:26.710 rabbitmq> 2024-09-16 09:45:26.709806+00:00 [info] <0.254.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-6YScTwib8GQFrgpbHW10Vg' +09:45:26.716 rabbitmq> 2024-09-16 09:45:26.716423+00:00 [info] <0.254.0> Running boot step virtual_host_reconciliation defined by app rabbit +09:45:26.716 rabbitmq> 2024-09-16 09:45:26.716716+00:00 [info] <0.254.0> Running boot step direct_client defined by app rabbit +09:45:26.717 rabbitmq> 2024-09-16 09:45:26.716850+00:00 [info] <0.254.0> Running boot step rabbit_federation_exchange defined by app rabbitmq_federation +09:45:26.718 rabbitmq> 2024-09-16 09:45:26.717210+00:00 [info] <0.254.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management +09:45:26.718 rabbitmq> 2024-09-16 09:45:26.717643+00:00 [info] <0.680.0> Resetting node maintenance status +09:45:26.896 rabbitmq> 2024-09-16 09:45:26.896010+00:00 [warning] <0.709.0> Deprecated features: `management_metrics_collection`: Feature `management_metrics_collection` is deprecated. +09:45:26.896 rabbitmq> 2024-09-16 09:45:26.896010+00:00 [warning] <0.709.0> By default, this feature can still be used for now. +09:45:26.896 rabbitmq> 2024-09-16 09:45:26.896010+00:00 [warning] <0.709.0> Its use will not be permitted by default in a future minor RabbitMQ version and the feature will be removed from a future major RabbitMQ version; actual versions to be determined. +09:45:26.896 rabbitmq> 2024-09-16 09:45:26.896010+00:00 [warning] <0.709.0> To continue using this feature when it is not permitted by default, set the following parameter in your configuration: +09:45:26.896 rabbitmq> 2024-09-16 09:45:26.896010+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = true" +09:45:26.896 rabbitmq> 2024-09-16 09:45:26.896010+00:00 [warning] <0.709.0> To test RabbitMQ as if the feature was removed, set this in your configuration: +09:45:26.896 rabbitmq> 2024-09-16 09:45:26.896010+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = false" +09:45:29.758 rabbitmq> 2024-09-16 09:45:29.758010+00:00 [info] <0.746.0> Management plugin: HTTP (non-TLS) listener started on port 15672 +09:45:29.758 rabbitmq> 2024-09-16 09:45:29.758145+00:00 [info] <0.776.0> Statistics database started. +09:45:29.758 rabbitmq> 2024-09-16 09:45:29.758225+00:00 [info] <0.775.0> Starting worker pool 'management_worker_pool' with 3 processes in it +09:45:29.766 rabbitmq> 2024-09-16 09:45:29.766124+00:00 [info] <0.794.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692 +09:45:29.766 rabbitmq> 2024-09-16 09:45:29.766251+00:00 [info] <0.680.0> Ready to start client connection listeners +09:45:29.768 rabbitmq> 2024-09-16 09:45:29.768020+00:00 [info] <0.838.0> started TCP listener on [::]:5672 +09:45:29.858 rabbitmq> completed with 5 plugins. +09:45:29.858 rabbitmq> 2024-09-16 09:45:29.858383+00:00 [info] <0.680.0> Server startup complete; 5 plugins started. +[INFO] DOCKER> Pattern 'Server startup complete' matched for container e01077a63a2a +09:45:29.858 rabbitmq> 2024-09-16 09:45:29.858383+00:00 [info] <0.680.0> * rabbitmq_prometheus +09:45:29.858 rabbitmq> 2024-09-16 09:45:29.858383+00:00 [info] <0.680.0> * rabbitmq_federation +09:45:29.858 rabbitmq> 2024-09-16 09:45:29.858383+00:00 [info] <0.680.0> * rabbitmq_management +09:45:29.858 rabbitmq> 2024-09-16 09:45:29.858383+00:00 [info] <0.680.0> * rabbitmq_management_agent +09:45:29.858 rabbitmq> 2024-09-16 09:45:29.858383+00:00 [info] <0.680.0> * rabbitmq_web_dispatch +09:45:29.934 rabbitmq> 2024-09-16 09:45:29.933687+00:00 [info] <0.9.0> Time to start RabbitMQ: 8206 ms +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waited on url http://localhost:32883 and on log out 'Server startup complete' 8567 ms +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Start container 90f5d0fe33e1 +09:45:31.099 sqs> +09:45:31.099 sqs> LocalStack version: 3.7.3.dev27 +09:45:31.099 sqs> LocalStack build date: 2024-09-16 +09:45:31.099 sqs> LocalStack build git hash: b90cbb111 +09:45:31.099 sqs> +09:45:31.574 sqs> Ready. +[INFO] DOCKER> Pattern 'Ready.' matched for container 90f5d0fe33e1 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Waited on log out 'Ready.' 1512 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container 13409db2e42c +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT]: Start container 2b02c23345bb +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "rabbitmq-worker-languagedetection": Start container 96f45f185ef1 +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "rabbitmq-worker-languagedetection": Waiting on url http://localhost:32887/health-check?type=READY with method HEAD for status 200..399. +09:45:33.654 rabbitmq-worker-languagedetection> [2024-09-16 09:45:33.653Z #007.??? INFO - - ] startup.sh: Running startup scripts... +09:45:33.657 rabbitmq-worker-languagedetection> [2024-09-16 09:45:33.656Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +09:45:33.665 rabbitmq-worker-languagedetection> [2024-09-16 09:45:33.663Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +09:45:33.666 rabbitmq-worker-languagedetection> [2024-09-16 09:45:33.666Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +09:45:33.676 rabbitmq-worker-languagedetection> [2024-09-16 09:45:33.674Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +09:45:33.678 rabbitmq-worker-languagedetection> [2024-09-16 09:45:33.677Z #007.??? INFO - - ] startup.sh: Startup scripts completed +09:45:33.680 rabbitmq-worker-languagedetection> [2024-09-16 09:45:33.679Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,846 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,848 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,848 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,852 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,861 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,861 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,874 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 13 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,874 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,875 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,875 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,879 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,883 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,968 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,968 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,969 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,037 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,037 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,037 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,040 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,040 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,049 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,051 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,106 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,111 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,111 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,112 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,112 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,113 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,113 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,113 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,113 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 238 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY +09:45:34.121 rabbitmq-worker-languagedetection> +09:45:34.365 rabbitmq-worker-languagedetection> [2024-09-16 09:45:34.343Z #1d3.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +09:45:35.444 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.444Z #1d3.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +09:45:35.446 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.446Z #1d3.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +09:45:35.452 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.452Z #1d3.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +09:45:35.474 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.473Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +09:45:35.478 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.477Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +09:45:35.480 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.479Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +09:45:35.482 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.481Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +09:45:35.495 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.495Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +09:45:35.496 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.496Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +09:45:35.498 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.497Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +09:45:35.570 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.570Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider +09:45:35.651 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.640Z #1d3.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} +09:45:35.758 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.757Z #1d3.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@42ea287{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +09:45:35.759 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.759Z #1d3.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@78cd163b{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +09:45:35.762 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.761Z #1d3.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS +09:45:35.772 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.771Z #1d3.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. +09:45:35.810 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.810Z #1d3.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE +09:45:35.814 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.814Z #1d3.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY +09:45:35.817 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.816Z #1d3.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY +09:45:35.820 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.817Z #1d3.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY +09:45:35.825 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.825Z #1d3.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE +09:45:35.826 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.825Z #1d3.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY +09:45:35.826 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.826Z #1d3.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE +09:45:35.831 rabbitmq-worker-languagedetection> +09:45:36.420 rabbitmq-worker-languagedetection> [2024-09-16 09:45:36.420Z #1d3.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} +09:45:36.422 rabbitmq-worker-languagedetection> [2024-09-16 09:45:36.422Z #1d3.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@23468512{/,null,AVAILABLE} +09:45:36.425 rabbitmq-worker-languagedetection> [2024-09-16 09:45:36.425Z #1d3.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} +09:45:36.426 rabbitmq-worker-languagedetection> [2024-09-16 09:45:36.426Z #1d3.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@718fd7c1{/,null,AVAILABLE} +09:45:36.435 rabbitmq-worker-languagedetection> [2024-09-16 09:45:36.434Z #1d3.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@42ea287{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +09:45:36.437 rabbitmq-worker-languagedetection> [2024-09-16 09:45:36.436Z #1d3.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@78cd163b{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +09:45:36.439 rabbitmq-worker-languagedetection> [2024-09-16 09:45:36.439Z #1d3.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@4c1bdcc2{STARTING}[11.0.23,sto=30000] @2756ms +09:45:36.541 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 17 +09:45:37.002 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:37.507 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +09:45:38.020 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:38.524 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:39.029 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +09:45:39.536 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:40.049 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +09:45:40.553 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:41.058 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:41.563 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:42.068 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:42.573 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:43.082 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:43.594 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +09:45:44.102 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:44.610 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +09:45:45.122 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +09:45:45.627 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:46.135 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:46.644 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:47.155 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +09:45:47.667 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +09:45:48.176 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:48.684 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +09:45:49.189 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:49.698 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:50.208 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:50 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:50.720 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:50 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +09:45:50.826 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.826Z #1d3.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE +09:45:50.842 rabbitmq> 2024-09-16 09:45:50.842188+00:00 [info] <0.845.0> accepting AMQP connection <0.845.0> (172.17.0.6:59904 -> 172.17.0.3:5672) +09:45:50.861 rabbitmq> 2024-09-16 09:45:50.861355+00:00 [info] <0.845.0> connection <0.845.0> (172.17.0.6:59904 -> 172.17.0.3:5672): user 'guest' authenticated and granted access to vhost '/' +09:45:50.869 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.868Z #1d3.034 WARN - - ] c.h.c.util.rabbitmq.RabbitUtil: Priority is not supported with quorum queues +09:45:50.934 rabbitmq> 2024-09-16 09:45:50.933968+00:00 [notice] <0.866.0> queue 'LanguageDetectionWorker-input-1' in vhost '/': candidate -> leader in term: 1 machine version: 3 +09:45:50.934 rabbitmq> 2024-09-16 09:45:50.934421+00:00 [info] <0.860.0> ra: started cluster %2F_LanguageDetectionWorker-input-1 with 1 servers +09:45:50.935 rabbitmq> 2024-09-16 09:45:50.934421+00:00 [info] <0.860.0> 0 servers failed to start: [] +09:45:50.935 rabbitmq> 2024-09-16 09:45:50.934421+00:00 [info] <0.860.0> Leader: {'%2F_LanguageDetectionWorker-input-1',rabbit@e01077a63a2a} +09:45:50.967 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.966Z #1d3.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE +09:45:50.967 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.967Z #1d3.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY +09:45:50.967 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.967Z #1d3.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE +09:45:50.969 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.968Z #1d3.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY +09:45:50.969 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.968Z #1d3.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY +09:45:50.969 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.969Z #1d3.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "rabbitmq-worker-languagedetection": Waited on url http://localhost:32887/health-check?type=READY 17556 ms +09:45:51.231 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:51 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Start container 8fa63a9a1b91 +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Waiting on url http://localhost:32889/health-check?type=READY with method HEAD for status 200..399. +09:45:51.667 sqs-worker-languagedetection> [2024-09-16 09:45:51.666Z #007.??? INFO - - ] startup.sh: Running startup scripts... +09:45:51.671 sqs-worker-languagedetection> [2024-09-16 09:45:51.670Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... +09:45:51.683 sqs-worker-languagedetection> [2024-09-16 09:45:51.679Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. +09:45:51.684 sqs-worker-languagedetection> [2024-09-16 09:45:51.683Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... +09:45:51.694 sqs-worker-languagedetection> [2024-09-16 09:45:51.692Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java +09:45:51.696 sqs-worker-languagedetection> [2024-09-16 09:45:51.695Z #007.??? INFO - - ] startup.sh: Startup scripts completed +09:45:51.698 sqs-worker-languagedetection> [2024-09-16 09:45:51.697Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. +09:45:52.005 sqs-worker-languagedetection> 09:45:51,834 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +09:45:52.005 sqs-worker-languagedetection> 09:45:51,835 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. +09:45:52.005 sqs-worker-languagedetection> 09:45:51,836 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +09:45:52.005 sqs-worker-languagedetection> 09:45:51,836 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +09:45:52.005 sqs-worker-languagedetection> 09:45:51,843 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +09:45:52.005 sqs-worker-languagedetection> 09:45:51,843 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +09:45:52.005 sqs-worker-languagedetection> 09:45:51,851 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 7 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +09:45:52.005 sqs-worker-languagedetection> 09:45:51,851 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +09:45:52.005 sqs-worker-languagedetection> 09:45:51,852 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +09:45:52.005 sqs-worker-languagedetection> 09:45:51,852 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +09:45:52.005 sqs-worker-languagedetection> 09:45:51,856 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] +09:45:52.005 sqs-worker-languagedetection> 09:45:51,861 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +09:45:52.005 sqs-worker-languagedetection> 09:45:51,905 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +09:45:52.005 sqs-worker-languagedetection> 09:45:51,905 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +09:45:52.005 sqs-worker-languagedetection> 09:45:51,905 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +09:45:52.005 sqs-worker-languagedetection> 09:45:51,952 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +09:45:52.005 sqs-worker-languagedetection> 09:45:51,952 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +09:45:52.005 sqs-worker-languagedetection> 09:45:51,952 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +09:45:52.005 sqs-worker-languagedetection> 09:45:51,955 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +09:45:52.005 sqs-worker-languagedetection> 09:45:51,955 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +09:45:52.005 sqs-worker-languagedetection> 09:45:51,962 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +09:45:52.005 sqs-worker-languagedetection> 09:45:51,965 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +09:45:52.005 sqs-worker-languagedetection> 09:45:51,992 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" +09:45:52.005 sqs-worker-languagedetection> 09:45:51,996 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +09:45:52.005 sqs-worker-languagedetection> 09:45:51,996 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +09:45:52.005 sqs-worker-languagedetection> 09:45:51,996 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +09:45:52.005 sqs-worker-languagedetection> 09:45:51,997 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +09:45:52.005 sqs-worker-languagedetection> 09:45:51,997 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +09:45:52.005 sqs-worker-languagedetection> 09:45:51,997 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. +09:45:52.005 sqs-worker-languagedetection> 09:45:51,998 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point +09:45:52.005 sqs-worker-languagedetection> 09:45:51,998 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 146 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY +09:45:52.005 sqs-worker-languagedetection> +09:45:52.203 sqs-worker-languagedetection> [2024-09-16 09:45:52.185Z #cf5.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final +09:45:52.925 sqs-worker-languagedetection> [2024-09-16 09:45:52.925Z #cf5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / +09:45:52.927 sqs-worker-languagedetection> [2024-09-16 09:45:52.926Z #cf5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / +09:45:52.927 sqs-worker-languagedetection> [2024-09-16 09:45:52.927Z #cf5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. +09:45:52.939 sqs-worker-languagedetection> [2024-09-16 09:45:52.939Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider +09:45:52.941 sqs-worker-languagedetection> [2024-09-16 09:45:52.941Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec +09:45:52.942 sqs-worker-languagedetection> [2024-09-16 09:45:52.942Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider +09:45:52.943 sqs-worker-languagedetection> [2024-09-16 09:45:52.943Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider +09:45:52.951 sqs-worker-languagedetection> [2024-09-16 09:45:52.950Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider +09:45:52.953 sqs-worker-languagedetection> [2024-09-16 09:45:52.952Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl +09:45:52.955 sqs-worker-languagedetection> [2024-09-16 09:45:52.954Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider +09:45:53.005 sqs-worker-languagedetection> [2024-09-16 09:45:53.005Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider +09:45:53.058 sqs-worker-languagedetection> [2024-09-16 09:45:53.053Z #cf5.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} +09:45:53.145 sqs-worker-languagedetection> [2024-09-16 09:45:53.145Z #cf5.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +09:45:53.145 sqs-worker-languagedetection> [2024-09-16 09:45:53.145Z #cf5.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +09:45:53.147 sqs-worker-languagedetection> [2024-09-16 09:45:53.147Z #cf5.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS +09:45:53.153 sqs-worker-languagedetection> [2024-09-16 09:45:53.153Z #cf5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. +09:45:53.165 sqs-worker-languagedetection> [2024-09-16 09:45:53.165Z #cf5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE +09:45:53.169 sqs-worker-languagedetection> [2024-09-16 09:45:53.169Z #cf5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY +09:45:53.170 sqs-worker-languagedetection> [2024-09-16 09:45:53.170Z #cf5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY +09:45:53.170 sqs-worker-languagedetection> [2024-09-16 09:45:53.170Z #cf5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY +09:45:53.171 sqs-worker-languagedetection> [2024-09-16 09:45:53.171Z #cf5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE +09:45:53.185 sqs-worker-languagedetection> [2024-09-16 09:45:53.185Z #cf5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY +09:45:53.187 sqs-worker-languagedetection> [2024-09-16 09:45:53.186Z #cf5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE +09:45:53.190 sqs-worker-languagedetection> +09:45:53.467 sqs-worker-languagedetection> [2024-09-16 09:45:53.466Z #cf5.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} +09:45:53.468 sqs-worker-languagedetection> [2024-09-16 09:45:53.468Z #cf5.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@2d5a1588{/,null,AVAILABLE} +09:45:53.471 sqs-worker-languagedetection> [2024-09-16 09:45:53.471Z #cf5.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} +09:45:53.471 sqs-worker-languagedetection> [2024-09-16 09:45:53.471Z #cf5.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@1c61eda5{/,null,AVAILABLE} +09:45:53.476 sqs-worker-languagedetection> [2024-09-16 09:45:53.476Z #cf5.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +09:45:53.479 sqs-worker-languagedetection> [2024-09-16 09:45:53.477Z #cf5.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +09:45:53.480 sqs-worker-languagedetection> [2024-09-16 09:45:53.480Z #cf5.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@517a2b0{STARTING}[11.0.23,sto=30000] @1778ms +09:45:53.542 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:53 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 16 +09:45:54.042 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:54 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:54.555 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:54 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +09:45:55.066 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:55 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:55.572 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:55 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:56.084 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:56 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +09:45:56.591 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:56 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:57.102 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:57 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:57.616 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:57 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 +09:45:58.125 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:58 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:58.631 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:58 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:45:59.145 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:59 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +09:45:59.649 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:59 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:46:00.154 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:00 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:46:00.660 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:00 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:46:01.164 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:01 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +09:46:01.668 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:01 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:46:02.173 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:02 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +09:46:02.679 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:02 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:46:03.183 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:03 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:46:03.692 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:03 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:46:03.732 rabbitmq-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:46:03 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 3 +09:46:04.197 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:04 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:46:04.703 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:04 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:46:05.213 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:05 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +09:46:05.718 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:05 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:46:06.223 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:06 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 +09:46:06.728 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:06 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:46:07.235 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:07 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:46:07.741 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:07 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:46:08.172 sqs-worker-languagedetection> [2024-09-16 09:46:08.172Z #cf5.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE +09:46:08.245 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:08 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +09:46:08.754 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:08 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 +09:46:09.219 sqs-worker-languagedetection> [2024-09-16 09:46:09.219Z #cf5.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY +09:46:09.219 sqs-worker-languagedetection> [2024-09-16 09:46:09.219Z #cf5.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE +09:46:09.220 sqs-worker-languagedetection> [2024-09-16 09:46:09.219Z #cf5.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE +09:46:09.223 sqs-worker-languagedetection> [2024-09-16 09:46:09.222Z #cf5.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY +09:46:09.223 sqs-worker-languagedetection> [2024-09-16 09:46:09.222Z #cf5.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY +09:46:09.223 sqs-worker-languagedetection> [2024-09-16 09:46:09.222Z #cf5.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Waited on url http://localhost:32889/health-check?type=READY 17557 ms +09:46:09.258 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:09 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 +[INFO] +[INFO] --- failsafe:3.1.2:integration-test (sqs-implementation-testing) @ worker-languagedetection-container --- +[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider +[INFO] +[INFO] ------------------------------------------------------- +[INFO] T E S T S +[INFO] ------------------------------------------------------- +[INFO] Running com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT +10:46:10,032 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +10:46:10,037 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - No custom configurators were discovered as a service. +10:46:10,037 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +10:46:10,039 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +10:46:10,046 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +10:46:10,047 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +10:46:10,056 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 9 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +10:46:10,056 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +10:46:10,057 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +10:46:10,059 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +10:46:10,064 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] +10:46:10,082 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@b2c9a9c - URL [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +10:46:10,158 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +10:46:10,159 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +10:46:10,159 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +10:46:10,235 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +10:46:10,235 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +10:46:10,235 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +10:46:10,244 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +10:46:10,244 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +10:46:10,255 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +10:46:10,257 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +10:46:10,339 |-INFO in ch.qos.logback.classic.pattern.DateConverter@fa4c865 - Setting zoneId to "UTC" +10:46:10,343 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +10:46:10,343 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +10:46:10,344 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +10:46:10,345 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +10:46:10,345 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +10:46:10,345 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@3bd82cf5 - End of configuration. +10:46:10,346 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@544fa968 - Registering current configuration as safe fallback point +10:46:10,346 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 289 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_field_multi_lang_en_fr_ger.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_multi_datasource.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_single_datasource.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_invalid.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple_multi.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_english.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_french.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_german.yaml.testcase + +=============== Starting test Item single_lang_french.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_french.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_french.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_french.yaml +Description: null +Associated tickets: null +Comments: single_lang_french.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 1 +Number of successful test cases (all test instances passes): 1 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid_combined.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 2 +Number of successful test cases (all test instances passes): 2 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown.yaml +================================================================================ +09:46:21.736 sqs-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:46:21 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 2 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 3 +Number of successful test cases (all test instances passes): 3 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_simple_multi.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_simple_multi.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODE_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_FR_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_GER_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_simple_multi.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_simple_multi.yaml +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 4 +Number of successful test cases (all test instances passes): 4 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown_split.yaml +================================================================================ +09:46:33.775 rabbitmq-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:46:33 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 5 +Number of successful test cases (all test instances passes): 5 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_combined.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 6 +Number of successful test cases (all test instances passes): 6 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 7 +Number of successful test cases (all test instances passes): 7 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid_split.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 8 +Number of successful test cases (all test instances passes): 8 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item single_lang_english.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_english.yaml +================================================================================ +09:46:51.781 sqs-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:46:51 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_english.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_english.yaml +Description: null +Associated tickets: null +Comments: single_lang_english.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 9 +Number of successful test cases (all test instances passes): 9 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_lang_single_datasource.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_lang_single_datasource.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_lang_single_datasource.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_lang_single_datasource.yaml +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 10 +Number of successful test cases (all test instances passes): 10 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_field_multi_lang_en_fr_ger.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_field_multi_lang_en_fr_ger.yaml +================================================================================ +09:47:03.812 rabbitmq-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:47:03 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 0 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODE_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_FR_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_GER_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_field_multi_lang_en_fr_ger.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 11 +Number of successful test cases (all test instances passes): 11 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang_combined.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 12 +Number of successful test cases (all test instances passes): 12 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 13 +Number of successful test cases (all test instances passes): 13 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang_split.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 14 +Number of successful test cases (all test instances passes): 14 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== +09:47:19.532 sqs-worker-languagedetection> [2024-09-16 09:47:19.531Z #cf5.054 ERROR - - ] c.h.c.w.l.LanguageDetectionWorker: Failed to read result format specified. + +=============== Starting test Item resultFormat_invalid.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_invalid.yaml +================================================================================ +09:47:21.825 sqs-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:47:21 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_invalid.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_invalid.yaml +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 15 +Number of successful test cases (all test instances passes): 15 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown_combined.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 16 +Number of successful test cases (all test instances passes): 16 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_simple.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_simple.yaml +================================================================================ +09:47:33.852 rabbitmq-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:47:33 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_simple.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_simple.yaml +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 17 +Number of successful test cases (all test instances passes): 17 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_lang_multi_datasource.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_lang_multi_datasource.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_lang_multi_datasource.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 18 +Number of successful test cases (all test instances passes): 18 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_split.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_multi_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 19 +Number of successful test cases (all test instances passes): 19 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item single_lang_german.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_german.yaml +================================================================================ +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_multi_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_german.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_german.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_german.yaml +Description: null +Associated tickets: null +Comments: single_lang_german.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_german.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_german.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 20 +Number of successful test cases (all test instances passes): 20 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang.yaml +================================================================================ +09:47:51.875 sqs-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:47:51 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 +single_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +Item with id single_lang_french.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple_multi.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +Item with id single_lang_english.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_single_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +Item with id resultFormat_invalid.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +Item with id resultFormat_simple.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +Item with id multi_lang_multi_datasource.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS +Item with id resultFormat_complex_split.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +single_lang_german.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS +Item with id single_lang_german.yaml was not found. Skipping. +Test case has 1 result items yet to be processed. +resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_german.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_german.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 21 +Number of successful test cases (all test instances passes): 21 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== +[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 105.0 s -- in com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT +[INFO] +[INFO] Results: +[INFO] +[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0 +[INFO] +[INFO] +[INFO] --- failsafe:3.1.2:integration-test (rabbitmq-implementation-testing) @ worker-languagedetection-container --- +[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider +[INFO] +[INFO] ------------------------------------------------------- +[INFO] T E S T S +[INFO] ------------------------------------------------------- +[INFO] Running com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT +10:47:55,909 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 +10:47:55,914 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - No custom configurators were discovered as a service. +10:47:55,914 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator +10:47:55,916 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator +10:47:55,923 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] +10:47:55,924 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] +10:47:55,933 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 10 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY +10:47:55,933 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator +10:47:55,935 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator +10:47:55,936 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +10:47:55,940 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] +10:47:55,955 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@b2c9a9c - URL [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file +10:47:56,027 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 +10:47:56,027 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 +10:47:56,027 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 +10:47:56,111 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] +10:47:56,111 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] +10:47:56,111 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] +10:47:56,122 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] +10:47:56,122 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +10:47:56,135 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property +10:47:56,138 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" +10:47:56,238 |-INFO in ch.qos.logback.classic.pattern.DateConverter@fa4c865 - Setting zoneId to "UTC" +10:47:56,242 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" +10:47:56,243 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO +10:47:56,243 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] +10:47:56,245 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" +10:47:56,245 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR +10:47:56,245 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@3bd82cf5 - End of configuration. +10:47:56,246 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@544fa968 - Registering current configuration as safe fallback point +10:47:56,246 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 311 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY + +09:47:58.482 rabbitmq> 2024-09-16 09:47:58.482066+00:00 [info] <0.926.0> accepting AMQP connection <0.926.0> (192.168.1.1:54088 -> 172.17.0.3:5672) +09:47:58.612 rabbitmq> 2024-09-16 09:47:58.612033+00:00 [info] <0.926.0> connection <0.926.0> (192.168.1.1:54088 -> 172.17.0.3:5672): user 'guest' authenticated and granted access to vhost '/' +09:47:58.696 rabbitmq> 2024-09-16 09:47:58.696340+00:00 [notice] <0.946.0> queue 'LanguageDetectionWorker-output-1' in vhost '/': candidate -> leader in term: 1 machine version: 3 +09:47:58.696 rabbitmq> 2024-09-16 09:47:58.696512+00:00 [info] <0.940.0> ra: started cluster %2F_LanguageDetectionWorker-output-1 with 1 servers +09:47:58.696 rabbitmq> 2024-09-16 09:47:58.696512+00:00 [info] <0.940.0> 0 servers failed to start: [] +09:47:58.696 rabbitmq> 2024-09-16 09:47:58.696512+00:00 [info] <0.940.0> Leader: {'%2F_LanguageDetectionWorker-output-1',rabbit@e01077a63a2a} +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_field_multi_lang_en_fr_ger.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_multi_datasource.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_single_datasource.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_combined.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_split.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_invalid.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple_multi.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_english.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_french.yaml.testcase +Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_german.yaml.testcase + +=============== Starting test Item resultFormat_complex_invalid_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid_combined.yaml +================================================================================ +09:47:59.290 rabbitmq-worker-languagedetection> [2024-09-16 09:47:59.290Z #1d3.054 WARN - - ] c.h.c.util.rabbitmq.RabbitUtil: Priority is not supported with quorum queues +New deliveryresultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 1 +Number of successful test cases (all test instances passes): 1 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== +09:47:59.435 rabbitmq-worker-languagedetection> [2024-09-16 09:47:59.435Z #1d3.054 ERROR - - ] c.h.c.w.l.LanguageDetectionWorker: Failed to read result format specified. + +=============== Starting test Item resultFormat_invalid.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_invalid.yaml +================================================================================ +New deliveryresultFormat_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_invalid.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_invalid.yaml +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 2 +Number of successful test cases (all test instances passes): 2 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_simple.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_simple.yaml +================================================================================ +New deliveryresultFormat_simple.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_simple.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_simple.yaml +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 3 +Number of successful test cases (all test instances passes): 3 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid_split.yaml +================================================================================ +New deliveryresultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 4 +Number of successful test cases (all test instances passes): 4 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_split.yaml +================================================================================ +New deliveryresultFormat_complex_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 5 +Number of successful test cases (all test instances passes): 5 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang.yaml +================================================================================ +New deliveryresultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 6 +Number of successful test cases (all test instances passes): 6 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang_split.yaml +================================================================================ +New deliveryresultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 7 +Number of successful test cases (all test instances passes): 7 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_lang_multi_datasource.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_lang_multi_datasource.yaml +================================================================================ +New deliverymulti_lang_multi_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_lang_multi_datasource.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 8 +Number of successful test cases (all test instances passes): 8 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item single_lang_english.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_english.yaml +================================================================================ +New deliverysingle_lang_english.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_english.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_english.yaml +Description: null +Associated tickets: null +Comments: single_lang_english.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 9 +Number of successful test cases (all test instances passes): 9 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_invalid.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_invalid.yaml +================================================================================ +New deliveryresultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS +*** Validating 'failures' +*** Created validator: CollectionValidator +*** Validating 'failureId' +*** Created validator: ValuePropertyValidator +*** Validating 'failureMessage' +*** Created validator: ValuePropertyValidator +Item resultFormat_complex_invalid.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_invalid.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 10 +Number of successful test cases (all test instances passes): 10 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_field_multi_lang_en_fr_ger.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_field_multi_lang_en_fr_ger.yaml +================================================================================ +New deliverymulti_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODE_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_FR_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_GER_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_field_multi_lang_en_fr_ger.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 11 +Number of successful test cases (all test instances passes): 11 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_simple_multi.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_simple_multi.yaml +================================================================================ +New deliveryresultFormat_simple_multi.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODE_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_FR_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'LANGUAGE_CODE_GER_CONTENT' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_simple_multi.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_simple_multi.yaml +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 12 +Number of successful test cases (all test instances passes): 12 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item single_lang_french.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_french.yaml +================================================================================ +New deliverysingle_lang_french.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_french.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_french.yaml +Description: null +Associated tickets: null +Comments: single_lang_french.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 13 +Number of successful test cases (all test instances passes): 13 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown_split.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown_split.yaml +================================================================================ +New deliveryresultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown_split.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown_split.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 14 +Number of successful test cases (all test instances passes): 14 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item multi_lang_single_datasource.yaml ====================== +================================================================================ + QUEUEING NEW TASK: multi_lang_single_datasource.yaml +================================================================================ +New deliverymulti_lang_single_datasource.yaml, status: RESULT_SUCCESS +New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item multi_lang_single_datasource.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: multi_lang_single_datasource.yaml +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 15 +Number of successful test cases (all test instances passes): 15 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_combined.yaml +================================================================================ +New deliveryresultFormat_complex_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 16 +Number of successful test cases (all test instances passes): 16 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_multi_lang_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_multi_lang_combined.yaml +================================================================================ +New deliveryresultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_multi_lang_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 17 +Number of successful test cases (all test instances passes): 17 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown.yaml +================================================================================ +New deliveryresultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 18 +Number of successful test cases (all test instances passes): 18 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item single_lang_german.yaml ====================== +================================================================================ + QUEUEING NEW TASK: single_lang_german.yaml +================================================================================ +New deliverysingle_lang_german.yaml, status: RESULT_SUCCESS +New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'DetectedLanguage2_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage2_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_Code' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage1_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_Name' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguage3_ConfidencePercentage' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_Status' +*** Created validator: DocumentWorkerFieldChangesValidator +*** Validating 'DetectedLanguages_ReliableResult' +*** Created validator: DocumentWorkerFieldChangesValidator +Item single_lang_german.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: single_lang_german.yaml +Description: null +Associated tickets: null +Comments: single_lang_german.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_german.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_german.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 19 +Number of successful test cases (all test instances passes): 19 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex.yaml +================================================================================ +New deliveryresultFormat_complex.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_german.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_german.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 20 +Number of successful test cases (all test instances passes): 20 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== + +=============== Starting test Item resultFormat_complex_unknown_combined.yaml ====================== +================================================================================ + QUEUEING NEW TASK: resultFormat_complex_unknown_combined.yaml +================================================================================ +New deliveryresultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS +*** Validating 'fieldChanges' +*** Created validator: PropertyMapValidator +*** Validating 'LANGUAGE_CODES' +*** Created validator: DocumentWorkerFieldChangesValidator +Item resultFormat_complex_unknown_combined.yaml: Result processor success: true +Test case has no remaining items awaiting processing. +================================================================================ + EXECUTION REPORT +================================================================================ + + Completed successfully all test cases. + + Test Instances: +================================================================================ + +Test case id: resultFormat_complex_unknown_combined.yaml +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml +*** TEST INSTANCE SUCCEEDED? true + +============================================ + +Number of tests passed:1 +Number of tests failed:0 + +================================================================================ + REPORT PER TEST CASE +================================================================================ + +Test case id: single_lang_german.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_german.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_multi_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_multi_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_french.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_french.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_lang_single_datasource.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_lang_single_datasource.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_simple_multi.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_simple_multi.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: multi_field_multi_lang_en_fr_ger.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: multi_field_multi_lang_en_fr_ger.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_invalid.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_invalid.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_combined.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_combined.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_multi_lang_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_multi_lang_split.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_unknown.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_unknown.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: single_lang_english.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: single_lang_english.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex.yaml + +***************************** + +Failed test instances: + + +======================================= + +Test case id: resultFormat_complex_split.yaml +Number of all test instances: 1 +Successful: 1 +Failed: 0 + +***************************** + +Successful test instances: + +Description: null +Associated tickets: null +Comments: resultFormat_complex_split.yaml + +***************************** + +Failed test instances: + + +======================================= + + +================================================================================ + +Number of all test cases: 21 +Number of successful test cases (all test instances passes): 21 +Number of failed test cases: 0 + +================================================================================ +=============== Finished successfully ====================== +09:48:00.647 rabbitmq> 2024-09-16 09:48:00.646898+00:00 [info] <0.926.0> closing AMQP connection <0.926.0> (192.168.1.1:54088 -> 172.17.0.3:5672, vhost: '/', user: 'guest') +Closing queue connection +[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.051 s -- in com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT +[INFO] +[INFO] Results: +[INFO] +[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0 +[INFO] +[INFO] +[INFO] --- docker:0.43.4:stop (stop) @ worker-languagedetection-container --- +09:48:01.024 sqs-worker-languagedetection> [2024-09-16 09:48:01.024Z #cf5.033 INFO - - ] o.eclipse.jetty.server.Server: Stopped Server@517a2b0{STOPPING}[11.0.23,sto=30000] +09:48:01.024 sqs-worker-languagedetection> [2024-09-16 09:48:01.024Z #cf5.033 INFO - - ] o.eclipse.jetty.server.Server: Shutdown Server@517a2b0{STOPPING}[11.0.23,sto=30000] +09:48:01.027 sqs-worker-languagedetection> [2024-09-16 09:48:01.026Z #cf5.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +09:48:01.027 sqs-worker-languagedetection> [2024-09-16 09:48:01.027Z #cf5.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +09:48:01.029 sqs-worker-languagedetection> [2024-09-16 09:48:01.028Z #cf5.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@1c61eda5{/,null,STOPPED} +09:48:01.036 sqs-worker-languagedetection> [2024-09-16 09:48:01.035Z #cf5.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@2d5a1588{/,null,STOPPED} +09:48:01.039 sqs-worker-languagedetection> [2024-09-16 09:48:01.038Z #cf5.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stop requested, allowing in-progress tasks to complete. +09:48:01.040 sqs-worker-languagedetection> [2024-09-16 09:48:01.040Z #cf5.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stopped. +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Stop and removed container 8fa63a9a1b91 after 0 ms +09:48:02.416 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.415Z #1d3.033 INFO - - ] o.eclipse.jetty.server.Server: Stopped Server@4c1bdcc2{STOPPING}[11.0.23,sto=30000] +09:48:02.416 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.416Z #1d3.033 INFO - - ] o.eclipse.jetty.server.Server: Shutdown Server@4c1bdcc2{STOPPING}[11.0.23,sto=30000] +09:48:02.419 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.419Z #1d3.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped application@42ea287{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} +09:48:02.420 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.420Z #1d3.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped admin@78cd163b{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} +09:48:02.421 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.421Z #1d3.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@718fd7c1{/,null,STOPPED} +09:48:02.428 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.427Z #1d3.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@23468512{/,null,STOPPED} +09:48:02.430 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.430Z #1d3.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stop requested, allowing in-progress tasks to complete. +09:48:02.445 rabbitmq> 2024-09-16 09:48:02.444713+00:00 [info] <0.845.0> closing AMQP connection <0.845.0> (172.17.0.6:59904 -> 172.17.0.3:5672, vhost: '/', user: 'guest') +09:48:02.445 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.445Z #1d3.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stopped. +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "rabbitmq-worker-languagedetection": Stop and removed container 96f45f185ef1 after 0 ms +[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT]: Stop and removed container 2b02c23345bb after 0 ms +[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container 13409db2e42c after 0 ms +09:48:04.056 sqs> Localstack runtime received signal 15 +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Stop and removed container 90f5d0fe33e1 after 0 ms +09:48:10.140 rabbitmq> 2024-09-16 09:48:10.140454+00:00 [notice] <0.64.0> SIGTERM received - shutting down +09:48:10.140 rabbitmq> 2024-09-16 09:48:10.140454+00:00 [notice] <0.64.0> +09:48:10.142 rabbitmq> 2024-09-16 09:48:10.141736+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_prometheus_tls +09:48:10.146 rabbitmq> 2024-09-16 09:48:10.146030+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_management_tls +09:48:10.154 rabbitmq> 2024-09-16 09:48:10.153973+00:00 [info] <0.838.0> stopped TCP listener on [::]:5672 +09:48:10.155 rabbitmq> 2024-09-16 09:48:10.155203+00:00 [info] <0.630.0> Virtual host '/' is stopping +09:48:10.155 rabbitmq> 2024-09-16 09:48:10.155317+00:00 [info] <0.981.0> Closing all connections in vhost '/' on node 'rabbit@e01077a63a2a' because the vhost is stopping +09:48:10.155 rabbitmq> 2024-09-16 09:48:10.155344+00:00 [info] <0.643.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' +09:48:10.164 rabbitmq> 2024-09-16 09:48:10.164095+00:00 [info] <0.643.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' is stopped +09:48:10.164 rabbitmq> 2024-09-16 09:48:10.164290+00:00 [info] <0.639.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' +09:48:10.173 rabbitmq> 2024-09-16 09:48:10.173545+00:00 [info] <0.639.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' is stopped +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Stop and removed container e01077a63a2a after 0 ms +09:48:12.521 webdav> ++ _term +09:48:12.521 webdav> ++ echo 'Caught SIGTERM signal!' +09:48:12.521 webdav> ++ kill -TERM '' +09:48:12.521 webdav> Caught SIGTERM signal! +[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container b5296a810364 after 0 ms +[INFO] +[INFO] --- license:4.3:check (check-license-headers) @ worker-languagedetection-container --- +[INFO] Checking licenses... +[INFO] +[INFO] --- dependency:3.6.0:analyze-only (check-dependencies) @ worker-languagedetection-container --- +[INFO] Skipping pom project +[INFO] +[INFO] --- duplicate-finder:2.0.1:check (deepcheck-dependencies) @ worker-languagedetection-container --- +[INFO] Ignoring POM project! +[INFO] +[INFO] --- failsafe:3.1.2:verify (sqs-implementation-testing) @ worker-languagedetection-container --- +[INFO] +[INFO] --- failsafe:3.1.2:verify (rabbitmq-implementation-testing) @ worker-languagedetection-container --- +[INFO] +[INFO] --- failsafe:3.1.2:verify (verify) @ worker-languagedetection-container --- +[INFO] +[INFO] --- install:3.1.1:install (default-install) @ worker-languagedetection-container --- +[INFO] Skipping artifact installation +[INFO] +[INFO] --- docker-versions:1.0.0-29:depopulate-project-registry (default-cli) @ worker-languagedetection-container --- +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... +[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 03:13 min +[INFO] Finished at: 2024-09-16T10:48:14+01:00 +[INFO] ------------------------------------------------------------------------ diff --git a/worker-languagedetection-container/pom.xml b/worker-languagedetection-container/pom.xml index a86625f..c6330b1 100644 --- a/worker-languagedetection-container/pom.xml +++ b/worker-languagedetection-container/pom.xml @@ -37,9 +37,6 @@ true ${project.basedir}/test-data/input ${project.basedir}/test-configs - false - true - rabbitmq @@ -154,26 +151,29 @@ verify - ${skip-sqs} + false true ${sqs.ctrl.port} sqs.us-east-1.localhost.localstack.cloud + sqs - test/worker-languagedetection + test/sqs-worker-languagedetection + target/failsafe-reports/sqs/failsafe-summary-sqs.xml + target/failsafe-reports/sqs - rabbit-implementation-testing + rabbitmq-implementation-testing integration-test verify - ${skip-rabbit} + false true @@ -181,10 +181,25 @@ ${worker.adminport} ${rabbitmq.node.port} ${rabbitmq.ctrl.port} + rabbitmq - test/worker-languagedetection + test/rabbitmq-worker-languagedetection + target/failsafe-reports/rabbitmq/failsafe-summary-rabbitmq.xml + target/failsafe-reports/rabbitmq + + + + verify + + verify + + + + target/failsafe-reports/sqs/failsafe-summary-sqs.xml + target/failsafe-reports/rabbitmq/failsafe-summary-rabbitmq.xml + @@ -194,7 +209,6 @@ ${test.data} ${test.data} false - ${messaging.implementation} ${test.configs} @@ -204,6 +218,7 @@ + - worker-languagedetection ${dockerCafDataProcessingOrg}worker-languagedetection${dockerProjectVersion} ${projectDockerRegistry}/cafapi/oraclelinux-jre21 @@ -408,15 +421,57 @@ + + + + + rabbitmq-worker-languagedetection + ${dockerCafDataProcessingOrg}worker-languagedetection${dockerProjectVersion} + + + ${worker.restport}:8080 + ${worker.adminport}:8081 + + + test/rabbitmq-worker-languagedetection + /config + rabbitmq + + + + config + webdav + + + + rabbitmq + + + true + + + + http://${docker.host.address}:${worker.restport}/health-check?type=READY + + + 500 + + + + + + + sqs-worker-languagedetection + ${dockerCafDataProcessingOrg}worker-languagedetection${dockerProjectVersion} ${sqs.worker.restport}:8080 ${sqs.worker.adminport}:8081 - test/worker-languagedetection + test/sqs-worker-languagedetection /config - ${messaging.implementation} + sqs @@ -425,7 +480,7 @@ - ${messaging.implementation} + sqs true @@ -445,15 +500,13 @@ + + + + + + - - run-sqs - - true - false - sqs - - diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~DocumentWorkerConfiguration b/worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~DocumentWorkerConfiguration similarity index 100% rename from worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~DocumentWorkerConfiguration rename to worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~DocumentWorkerConfiguration diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~FileSystemDataStoreConfiguration b/worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~FileSystemDataStoreConfiguration similarity index 100% rename from worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~FileSystemDataStoreConfiguration rename to worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~FileSystemDataStoreConfiguration diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~HealthConfiguration b/worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~HealthConfiguration similarity index 100% rename from worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~HealthConfiguration rename to worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~HealthConfiguration diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~HttpDataStoreConfiguration b/worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~HttpDataStoreConfiguration similarity index 100% rename from worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~HttpDataStoreConfiguration rename to worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~HttpDataStoreConfiguration diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~LanguageDetectionWorkerConfiguration b/worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~LanguageDetectionWorkerConfiguration similarity index 100% rename from worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~LanguageDetectionWorkerConfiguration rename to worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~LanguageDetectionWorkerConfiguration diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration b/worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~MessageSystemConfiguration similarity index 100% rename from worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~MessageSystemConfiguration rename to worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~MessageSystemConfiguration diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~RabbitConfiguration b/worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~RabbitConfiguration similarity index 100% rename from worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~RabbitConfiguration rename to worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~RabbitConfiguration diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~RabbitWorkerQueueConfiguration b/worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~RabbitWorkerQueueConfiguration similarity index 100% rename from worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~RabbitWorkerQueueConfiguration rename to worker-languagedetection-container/test-configs/cfg~test~rabbitmq-worker-languagedetection~RabbitWorkerQueueConfiguration diff --git a/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~DocumentWorkerConfiguration b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~DocumentWorkerConfiguration new file mode 100644 index 0000000..c197113 --- /dev/null +++ b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~DocumentWorkerConfiguration @@ -0,0 +1,8 @@ +{ + "workerName": "LanguageDetectionWorker", + "workerVersion": "2.3.1", + "outputQueue": "LanguageDetectionWorker-output-1", + "threads": 1, + "maxBatchSize": 2, + "maxBatchTime": 5000 +} diff --git a/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~FileSystemDataStoreConfiguration b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~FileSystemDataStoreConfiguration new file mode 100644 index 0000000..f9291c3 --- /dev/null +++ b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~FileSystemDataStoreConfiguration @@ -0,0 +1,3 @@ +{ + "dataDir": "${CAF_INTEGRATIONTESTS_FS_PATH:-/srv/common/webdav}" +} diff --git a/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~HealthConfiguration b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~HealthConfiguration new file mode 100644 index 0000000..caab249 --- /dev/null +++ b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~HealthConfiguration @@ -0,0 +1,12 @@ +{ + "livenessInitialDelaySeconds": 15, + "livenessCheckIntervalSeconds": 60, + "livenessDowntimeIntervalSeconds": 60, + "livenessSuccessAttempts": 1, + "livenessFailureAttempts": 3, + "readinessInitialDelaySeconds": 15, + "readinessCheckIntervalSeconds": 60, + "readinessDowntimeIntervalSeconds": 60, + "readinessSuccessAttempts": 1, + "readinessFailureAttempts": 3 +} diff --git a/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~HttpDataStoreConfiguration b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~HttpDataStoreConfiguration new file mode 100644 index 0000000..5f6e02c --- /dev/null +++ b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~HttpDataStoreConfiguration @@ -0,0 +1,3 @@ +{ + "url": "${CAF_WORKER_HTTP_DATASTORE_URL}" +} diff --git a/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~LanguageDetectionWorkerConfiguration b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~LanguageDetectionWorkerConfiguration new file mode 100644 index 0000000..0658936 --- /dev/null +++ b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~LanguageDetectionWorkerConfiguration @@ -0,0 +1,3 @@ +{ + "resultFormat": "SIMPLE" +} \ No newline at end of file diff --git a/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~MessageSystemConfiguration b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~MessageSystemConfiguration new file mode 100644 index 0000000..e8df564 --- /dev/null +++ b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~MessageSystemConfiguration @@ -0,0 +1,3 @@ +{ + "implementation": "${CAF_MESSAGING_IMPLEMENTATION:-this_should_get_ignored}" +} diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~SQSConfiguration similarity index 100% rename from worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSConfiguration rename to worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~SQSConfiguration diff --git a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~SQSWorkerQueueConfiguration similarity index 92% rename from worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration rename to worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~SQSWorkerQueueConfiguration index 794cbe2..bd743fb 100644 --- a/worker-languagedetection-container/test-configs/cfg~test~worker-languagedetection~SQSWorkerQueueConfiguration +++ b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~SQSWorkerQueueConfiguration @@ -4,7 +4,7 @@ "pausedQueue": "LanguageDetectionWorker-paused-1", "rejectedQueue": "worker-rejected", "longPollInterval": 20, - "maxNumberOfMessages": 1, + "maxNumberOfMessages": 10, "visibilityTimeout": 300, "messageRetentionPeriod": 1000, "maxDeliveries": 1000, From 0a8ce0a71755acaa721b7756de069d193d56f290 Mon Sep 17 00:00:00 2001 From: David Milligan Date: Mon, 16 Sep 2024 17:05:11 +0100 Subject: [PATCH 12/21] removed target dir --- worker-languagedetection-container/build.log | 13050 ---------------- worker-languagedetection-container/pom.xml | 12 +- .../cfg~caf~worker~SQSConfiguration.js | 23 - 3 files changed, 1 insertion(+), 13084 deletions(-) delete mode 100644 worker-languagedetection-container/build.log delete mode 100644 worker-languagedetection-container/target/config-files/cfg~caf~worker~SQSConfiguration.js diff --git a/worker-languagedetection-container/build.log b/worker-languagedetection-container/build.log deleted file mode 100644 index 4c89479..0000000 --- a/worker-languagedetection-container/build.log +++ /dev/null @@ -1,13050 +0,0 @@ - -[INFO] Scanning for projects... -[INFO] Adding docker version management goals... [docker-versions:populate-project-registry, clean, install, docker-versions:depopulate-project-registry] -[INFO] Inspecting build with total of 1 modules... -[INFO] Installing Nexus Staging features: -[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin -[INFO] -[INFO] --< com.github.cafdataprocessing:worker-languagedetection-container >--- -[INFO] Building worker-languagedetection-container 5.2.0-SNAPSHOT -[INFO] from pom.xml -[INFO] --------------------------------[ pom ]--------------------------------- -[INFO] -[INFO] --- docker-versions:1.0.0-29:populate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/cafapi/prereleases:oraclelinux-jre21-1.0.0-SNAPSHOT, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... current tags: [darwin-workflow-worker-10.1.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest, dockerhub-public.svsartifactory.swinfra.net/cloudesire/webdav:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/busybox:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/library/rabbitmq:3-management, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] -[INFO] Credentials not found for dockerhub-public.svsartifactory.swinfra.net -[INFO] Pulling dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest... -[INFO] Tagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... current tags: [dockerhub-public.svsartifactory.swinfra.net/localstack/localstack:latest, worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] -[INFO] -[INFO] --- clean:3.3.1:clean (default-clean) @ worker-languagedetection-container --- -[INFO] Deleting /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/target -[INFO] -[INFO] --- enforcer:3.4.1:enforce (enforce-banned-dependencies) @ worker-languagedetection-container --- -[INFO] Rule 0: org.apache.maven.enforcer.rules.BanDuplicatePomDependencyVersions passed -[INFO] Rule 1: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed -[INFO] -[INFO] --- jgit-buildnumber:1.2.12:extract-buildnumber (git-buildnumber) @ worker-languagedetection-container --- -[INFO] Current repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, executionRootDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container, runOnlyAtExecutionRoot: true -[INFO] Get git info from repositoryDirectory: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container -[INFO] Git info extracted in 307ms, revision: '33590f6', branch: 'US922349', tag: '', commitsCount: '291', commitDate: '2024-09-13', buildDate: '2024-09-16', buildnumber: 'US922349.291.33590f6' -[INFO] -[INFO] --- gplus:3.0.2:execute (set-git-branch-if-unknown) @ worker-languagedetection-container --- -[INFO] Using plugin classloader, includes GMavenPlus and project classpath. -[INFO] Using Groovy 3.0.19 to perform execute. -[INFO] -[INFO] --- license:4.3:format (update-license-headers) @ worker-languagedetection-container --- -[INFO] Updating license headers... -[INFO] -[INFO] --- dependency:3.6.0:unpack (process-config-files) @ worker-languagedetection-container --- -[INFO] Configured Artifact: com.github.workerframework:worker-default-configs:?:jar -[INFO] -[INFO] --- resources:3.3.1:copy-resources (process-config-files) @ worker-languagedetection-container --- -[INFO] Copying 2 resources from src/main/config to target/config-files -[INFO] -[INFO] --- docker:0.43.4:build (build-docker-container) @ worker-languagedetection-container --- -[INFO] -[INFO] --- compiler:3.11.0:testCompile (default) @ worker-languagedetection-container --- -[INFO] Changes detected - recompiling the module! :source -[INFO] Compiling 1 source file with javac [debug release 17] to target/test-classes -[INFO] -[INFO] --- source:3.3.0:jar-no-fork (attach-sources) @ worker-languagedetection-container --- -[INFO] -[INFO] --- javadoc:3.6.0:jar (attach-javadocs) @ worker-languagedetection-container --- -[INFO] Not executing Javadoc as the project is not a Java classpath-capable package -[INFO] -[INFO] --- docker:0.43.4:start (start) @ worker-languagedetection-container --- -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Start container b5296a810364 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waiting on url http://localhost:32882 with method HEAD for status 200..399. -09:45:20.936 webdav> + sed -i 's/Listen 80/Listen 8080/' /etc/apache2/ports.conf -09:45:20.937 webdav> + getent passwd 33 -09:45:20.938 webdav> www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin -09:45:20.938 webdav> + useradd -r webdav -u 33 -g 33 -09:45:20.972 webdav> useradd: UID 33 is not unique -09:45:20.973 webdav> + mkdir -p /srv/common/webdav -09:45:20.976 webdav> + chown 33 /srv/common/webdav -09:45:20.977 webdav> + trap _term SIGTERM -09:45:20.977 webdav> + pid=12 -09:45:20.977 webdav> + wait 12 -09:45:20.978 webdav> + /usr/sbin/apache2 -D FOREGROUND -09:45:20.988 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -09:45:20.991 webdav> AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message -09:45:20.994 webdav> [Mon Sep 16 09:45:20.993795 2024] [mpm_event:notice] [pid 12:tid 139666665211776] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations -09:45:20.994 webdav> [Mon Sep 16 09:45:20.994230 2024] [core:notice] [pid 12:tid 139666665211776] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND' -09:45:21.081 webdav> 172.17.0.2:80 192.168.1.1 - - [16/Sep/2024:09:45:21 +0000] "HEAD / HTTP/1.1" 200 182 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Waited on url http://localhost:32882 and on log out 'WebDAV Server startup complete' 93 ms -[ERROR] DOCKER> IO Error while requesting logs: org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected Thread-2 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Start container e01077a63a2a -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waiting on url http://localhost:32883 with method HEAD for status 200..399. -09:45:24.600 rabbitmq> 2024-09-16 09:45:24.594088+00:00 [notice] <0.44.0> Application syslog exited with reason: stopped -09:45:24.600 rabbitmq> 2024-09-16 09:45:24.599688+00:00 [notice] <0.254.0> Logging: switching to configured handler(s); following messages may not be visible in this log output -09:45:24.600 rabbitmq> 2024-09-16 09:45:24.600292+00:00 [notice] <0.254.0> Logging: configured log handlers are now ACTIVE -09:45:24.618 rabbitmq> 2024-09-16 09:45:24.618016+00:00 [info] <0.254.0> ra: starting system quorum_queues -09:45:24.618 rabbitmq> 2024-09-16 09:45:24.618094+00:00 [info] <0.254.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/quorum/rabbit@e01077a63a2a -09:45:24.684 rabbitmq> 2024-09-16 09:45:24.683848+00:00 [info] <0.268.0> ra system 'quorum_queues' running pre init for 0 registered servers -09:45:24.694 rabbitmq> 2024-09-16 09:45:24.694525+00:00 [info] <0.269.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered -09:45:24.710 rabbitmq> 2024-09-16 09:45:24.710118+00:00 [notice] <0.274.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables -09:45:24.734 rabbitmq> 2024-09-16 09:45:24.733917+00:00 [info] <0.254.0> ra: starting system coordination -09:45:24.734 rabbitmq> 2024-09-16 09:45:24.733968+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/coordination/rabbit@e01077a63a2a -09:45:24.736 rabbitmq> 2024-09-16 09:45:24.736300+00:00 [info] <0.282.0> ra system 'coordination' running pre init for 0 registered servers -09:45:24.739 rabbitmq> 2024-09-16 09:45:24.738816+00:00 [info] <0.283.0> ra: meta data store initialised for system coordination. 0 record(s) recovered -09:45:24.739 rabbitmq> 2024-09-16 09:45:24.739162+00:00 [notice] <0.288.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables -09:45:24.748 rabbitmq> 2024-09-16 09:45:24.747606+00:00 [info] <0.254.0> ra: starting system coordination -09:45:24.748 rabbitmq> 2024-09-16 09:45:24.747660+00:00 [info] <0.254.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/coordination/rabbit@e01077a63a2a -09:45:24.858 rabbitmq> 2024-09-16 09:45:24.857945+00:00 [info] <0.254.0> Waiting for Khepri leader for 30000 ms, 9 retries left -09:45:24.877 rabbitmq> 2024-09-16 09:45:24.877395+00:00 [notice] <0.292.0> RabbitMQ metadata store: candidate -> leader in term: 1 machine version: 1 -09:45:24.885 rabbitmq> 2024-09-16 09:45:24.884892+00:00 [info] <0.254.0> Khepri leader elected -09:45:24.885 rabbitmq> 2024-09-16 09:45:24.884941+00:00 [info] <0.254.0> Waiting for Khepri projections for 30000 ms, 9 retries left -09:45:25.255 rabbitmq> 2024-09-16 09:45:25.255284+00:00 [info] <0.254.0> -09:45:25.255 rabbitmq> 2024-09-16 09:45:25.255284+00:00 [info] <0.254.0> Starting RabbitMQ 3.13.7 on Erlang 26.2.5.3 [jit] -09:45:25.255 rabbitmq> 2024-09-16 09:45:25.255284+00:00 [info] <0.254.0> Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries -09:45:25.255 rabbitmq> 2024-09-16 09:45:25.255284+00:00 [info] <0.254.0> Licensed under the MPL 2.0. Website: https://rabbitmq.com -09:45:25.257 rabbitmq> -09:45:25.257 rabbitmq> ## ## RabbitMQ 3.13.7 -09:45:25.257 rabbitmq> ## ## -09:45:25.257 rabbitmq> ########## Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries -09:45:25.257 rabbitmq> ###### ## -09:45:25.257 rabbitmq> ########## Licensed under the MPL 2.0. Website: https://rabbitmq.com -09:45:25.257 rabbitmq> -09:45:25.257 rabbitmq> Erlang: 26.2.5.3 [jit] -09:45:25.257 rabbitmq> TLS Library: OpenSSL - OpenSSL 3.1.7 3 Sep 2024 -09:45:25.257 rabbitmq> Release series support status: see https://www.rabbitmq.com/release-information -09:45:25.257 rabbitmq> -09:45:25.257 rabbitmq> Doc guides: https://www.rabbitmq.com/docs -09:45:25.257 rabbitmq> Support: https://www.rabbitmq.com/docs/contact -09:45:25.257 rabbitmq> Tutorials: https://www.rabbitmq.com/tutorials -09:45:25.257 rabbitmq> Monitoring: https://www.rabbitmq.com/docs/monitoring -09:45:25.257 rabbitmq> Upgrading: https://www.rabbitmq.com/docs/upgrade -09:45:25.257 rabbitmq> -09:45:25.257 rabbitmq> Logs: -09:45:25.257 rabbitmq> -09:45:25.257 rabbitmq> Config file(s): /etc/rabbitmq/conf.d/10-defaults.conf -09:45:25.257 rabbitmq> -09:45:25.263 rabbitmq> Starting broker...2024-09-16 09:45:25.259483+00:00 [info] <0.254.0> -09:45:25.263 rabbitmq> 2024-09-16 09:45:25.259483+00:00 [info] <0.254.0> node : rabbit@e01077a63a2a -09:45:25.263 rabbitmq> 2024-09-16 09:45:25.259483+00:00 [info] <0.254.0> home dir : /var/lib/rabbitmq -09:45:25.263 rabbitmq> 2024-09-16 09:45:25.259483+00:00 [info] <0.254.0> config file(s) : /etc/rabbitmq/conf.d/10-defaults.conf -09:45:25.263 rabbitmq> 2024-09-16 09:45:25.259483+00:00 [info] <0.254.0> cookie hash : ZVH215IMOyuLBy9RiZqTFA== -09:45:25.263 rabbitmq> 2024-09-16 09:45:25.259483+00:00 [info] <0.254.0> log(s) : -09:45:25.263 rabbitmq> 2024-09-16 09:45:25.259483+00:00 [info] <0.254.0> data dir : /var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a -09:45:25.567 rabbitmq> 2024-09-16 09:45:25.566913+00:00 [info] <0.254.0> Running boot step pre_boot defined by app rabbit -09:45:25.567 rabbitmq> 2024-09-16 09:45:25.566975+00:00 [info] <0.254.0> Running boot step rabbit_global_counters defined by app rabbit -09:45:25.567 rabbitmq> 2024-09-16 09:45:25.567262+00:00 [info] <0.254.0> Running boot step rabbit_osiris_metrics defined by app rabbit -09:45:25.567 rabbitmq> 2024-09-16 09:45:25.567360+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics defined by app rabbit -09:45:25.567 rabbitmq> 2024-09-16 09:45:25.567772+00:00 [info] <0.254.0> Running boot step rabbit_alarm defined by app rabbit -09:45:25.582 rabbitmq> 2024-09-16 09:45:25.581595+00:00 [info] <0.329.0> Memory high watermark set to 6399 MiB (6710414540 bytes) of 15998 MiB (16776036352 bytes) total -09:45:25.585 rabbitmq> 2024-09-16 09:45:25.585388+00:00 [info] <0.331.0> Enabling free disk space monitoring (disk free space: 968545931264, total memory: 16776036352) -09:45:25.585 rabbitmq> 2024-09-16 09:45:25.585441+00:00 [info] <0.331.0> Disk free limit set to 50MB -09:45:25.588 rabbitmq> 2024-09-16 09:45:25.587923+00:00 [info] <0.254.0> Running boot step code_server_cache defined by app rabbit -09:45:25.588 rabbitmq> 2024-09-16 09:45:25.588008+00:00 [info] <0.254.0> Running boot step file_handle_cache defined by app rabbit -09:45:25.598 rabbitmq> 2024-09-16 09:45:25.597550+00:00 [info] <0.334.0> Limiting to approx 1048479 file handles (943629 sockets) -09:45:25.598 rabbitmq> 2024-09-16 09:45:25.597870+00:00 [info] <0.335.0> FHC read buffering: OFF -09:45:25.598 rabbitmq> 2024-09-16 09:45:25.597926+00:00 [info] <0.335.0> FHC write buffering: ON -09:45:25.599 rabbitmq> 2024-09-16 09:45:25.598768+00:00 [info] <0.254.0> Running boot step worker_pool defined by app rabbit -09:45:25.599 rabbitmq> 2024-09-16 09:45:25.598939+00:00 [info] <0.315.0> Will use 4 processes for default worker pool -09:45:25.600 rabbitmq> 2024-09-16 09:45:25.599015+00:00 [info] <0.315.0> Starting worker pool 'worker_pool' with 4 processes in it -09:45:25.600 rabbitmq> 2024-09-16 09:45:25.599649+00:00 [info] <0.254.0> Running boot step database defined by app rabbit -09:45:25.600 rabbitmq> 2024-09-16 09:45:25.600048+00:00 [info] <0.254.0> Peer discovery: configured backend: rabbit_peer_discovery_classic_config -09:45:25.604 rabbitmq> 2024-09-16 09:45:25.602937+00:00 [notice] <0.316.0> Feature flags: attempt to enable `detailed_queues_endpoint`... -09:45:25.669 rabbitmq> 2024-09-16 09:45:25.669068+00:00 [notice] <0.316.0> Feature flags: `detailed_queues_endpoint` enabled -09:45:25.670 rabbitmq> 2024-09-16 09:45:25.669198+00:00 [notice] <0.316.0> Feature flags: attempt to enable `quorum_queue_non_voters`... -09:45:25.737 rabbitmq> 2024-09-16 09:45:25.737505+00:00 [notice] <0.316.0> Feature flags: `quorum_queue_non_voters` enabled -09:45:25.738 rabbitmq> 2024-09-16 09:45:25.737686+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_update_config_command`... -09:45:25.807 rabbitmq> 2024-09-16 09:45:25.806821+00:00 [notice] <0.316.0> Feature flags: `stream_update_config_command` enabled -09:45:25.807 rabbitmq> 2024-09-16 09:45:25.807043+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_filtering`... -09:45:25.874 rabbitmq> 2024-09-16 09:45:25.874130+00:00 [notice] <0.316.0> Feature flags: `stream_filtering` enabled -09:45:25.876 rabbitmq> 2024-09-16 09:45:25.874334+00:00 [notice] <0.316.0> Feature flags: attempt to enable `stream_sac_coordinator_unblock_group`... -09:45:25.944 rabbitmq> 2024-09-16 09:45:25.942191+00:00 [notice] <0.316.0> Feature flags: `stream_sac_coordinator_unblock_group` enabled -09:45:25.944 rabbitmq> 2024-09-16 09:45:25.942349+00:00 [notice] <0.316.0> Feature flags: attempt to enable `restart_streams`... -09:45:26.011 rabbitmq> 2024-09-16 09:45:26.011084+00:00 [notice] <0.316.0> Feature flags: `restart_streams` enabled -09:45:26.013 rabbitmq> 2024-09-16 09:45:26.011252+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers`... -09:45:26.086 rabbitmq> 2024-09-16 09:45:26.079648+00:00 [notice] <0.316.0> Feature flags: `message_containers` enabled -09:45:26.086 rabbitmq> 2024-09-16 09:45:26.079782+00:00 [notice] <0.316.0> Feature flags: attempt to enable `message_containers_deaths_v2`... -09:45:26.145 rabbitmq> 2024-09-16 09:45:26.145369+00:00 [notice] <0.316.0> Feature flags: `message_containers_deaths_v2` enabled -09:45:26.145 rabbitmq> 2024-09-16 09:45:26.145624+00:00 [info] <0.254.0> DB: virgin node -> run peer discovery -09:45:26.146 rabbitmq> 2024-09-16 09:45:26.145663+00:00 [warning] <0.254.0> Classic peer discovery backend: list of nodes does not contain the local node [] -09:45:26.159 rabbitmq> 2024-09-16 09:45:26.158975+00:00 [notice] <0.44.0> Application mnesia exited with reason: stopped -09:45:26.478 rabbitmq> 2024-09-16 09:45:26.477347+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -09:45:26.478 rabbitmq> 2024-09-16 09:45:26.477648+00:00 [info] <0.254.0> Successfully synced tables from a peer -09:45:26.478 rabbitmq> 2024-09-16 09:45:26.477873+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -09:45:26.478 rabbitmq> 2024-09-16 09:45:26.477991+00:00 [info] <0.254.0> Successfully synced tables from a peer -09:45:26.505 rabbitmq> 2024-09-16 09:45:26.504670+00:00 [info] <0.254.0> Waiting for Mnesia tables for 30000 ms, 9 retries left -09:45:26.505 rabbitmq> 2024-09-16 09:45:26.504966+00:00 [info] <0.254.0> Successfully synced tables from a peer -09:45:26.506 rabbitmq> 2024-09-16 09:45:26.505248+00:00 [info] <0.254.0> Running boot step tracking_metadata_store defined by app rabbit -09:45:26.506 rabbitmq> 2024-09-16 09:45:26.505379+00:00 [info] <0.558.0> Setting up a table for connection tracking on this node: tracked_connection -09:45:26.506 rabbitmq> 2024-09-16 09:45:26.505443+00:00 [info] <0.558.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.505505+00:00 [info] <0.558.0> Setting up a table for per-user connection counting on this node: tracked_connection_per_user -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.505576+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.505633+00:00 [info] <0.558.0> Setting up a table for channel tracking on this node: tracked_channel_per_user -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.505744+00:00 [info] <0.254.0> Running boot step networking_metadata_store defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.505874+00:00 [info] <0.254.0> Running boot step feature_flags defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506119+00:00 [info] <0.254.0> Running boot step codec_correctness_check defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506165+00:00 [info] <0.254.0> Running boot step external_infrastructure defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506191+00:00 [info] <0.254.0> Running boot step rabbit_event defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506298+00:00 [info] <0.254.0> Running boot step rabbit_registry defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506345+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506418+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506451+00:00 [info] <0.254.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506522+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_direct defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506558+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506589+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_headers defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506636+00:00 [info] <0.254.0> Running boot step rabbit_exchange_type_topic defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506689+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506726+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506767+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506818+00:00 [info] <0.254.0> Running boot step rabbit_priority_queue defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506900+00:00 [info] <0.254.0> Priority queues enabled, real BQ is rabbit_variable_queue -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.506973+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_client_local defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.507069+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit -09:45:26.507 rabbitmq> 2024-09-16 09:45:26.507182+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_random defined by app rabbit -09:45:26.510 rabbitmq> 2024-09-16 09:45:26.508857+00:00 [info] <0.254.0> Running boot step kernel_ready defined by app rabbit -09:45:26.510 rabbitmq> 2024-09-16 09:45:26.508934+00:00 [info] <0.254.0> Running boot step rabbit_sysmon_minder defined by app rabbit -09:45:26.510 rabbitmq> 2024-09-16 09:45:26.509086+00:00 [info] <0.254.0> Running boot step rabbit_epmd_monitor defined by app rabbit -09:45:26.511 rabbitmq> 2024-09-16 09:45:26.510709+00:00 [info] <0.566.0> epmd monitor knows us, inter-node communication (distribution) port: 25672 -09:45:26.511 rabbitmq> 2024-09-16 09:45:26.510818+00:00 [info] <0.254.0> Running boot step guid_generator defined by app rabbit -09:45:26.519 rabbitmq> 2024-09-16 09:45:26.518520+00:00 [info] <0.254.0> Running boot step rabbit_node_monitor defined by app rabbit -09:45:26.519 rabbitmq> 2024-09-16 09:45:26.518796+00:00 [info] <0.570.0> Starting rabbit_node_monitor (in ignore mode) -09:45:26.519 rabbitmq> 2024-09-16 09:45:26.518927+00:00 [info] <0.254.0> Running boot step delegate_sup defined by app rabbit -09:45:26.520 rabbitmq> 2024-09-16 09:45:26.519330+00:00 [info] <0.254.0> Running boot step rabbit_memory_monitor defined by app rabbit -09:45:26.520 rabbitmq> 2024-09-16 09:45:26.520231+00:00 [info] <0.254.0> Running boot step rabbit_fifo_dlx_sup defined by app rabbit -09:45:26.521 rabbitmq> 2024-09-16 09:45:26.520624+00:00 [info] <0.254.0> Running boot step core_initialized defined by app rabbit -09:45:26.521 rabbitmq> 2024-09-16 09:45:26.520682+00:00 [info] <0.254.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit -09:45:26.521 rabbitmq> 2024-09-16 09:45:26.520733+00:00 [info] <0.254.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit -09:45:26.522 rabbitmq> 2024-09-16 09:45:26.520799+00:00 [info] <0.254.0> Running boot step rabbit_definitions_hashing defined by app rabbit -09:45:26.523 rabbitmq> 2024-09-16 09:45:26.520936+00:00 [info] <0.254.0> Running boot step rabbit_exchange_parameters defined by app rabbit -09:45:26.563 rabbitmq> 2024-09-16 09:45:26.563329+00:00 [info] <0.254.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit -09:45:26.564 rabbitmq> 2024-09-16 09:45:26.563837+00:00 [info] <0.254.0> Running boot step rabbit_policies defined by app rabbit -09:45:26.564 rabbitmq> 2024-09-16 09:45:26.564081+00:00 [info] <0.254.0> Running boot step rabbit_policy defined by app rabbit -09:45:26.564 rabbitmq> 2024-09-16 09:45:26.564179+00:00 [info] <0.254.0> Running boot step rabbit_queue_location_validator defined by app rabbit -09:45:26.564 rabbitmq> 2024-09-16 09:45:26.564391+00:00 [info] <0.254.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit -09:45:26.564 rabbitmq> 2024-09-16 09:45:26.564445+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue defined by app rabbit -09:45:26.565 rabbitmq> 2024-09-16 09:45:26.564502+00:00 [info] <0.254.0> Running boot step rabbit_stream_coordinator defined by app rabbit -09:45:26.565 rabbitmq> 2024-09-16 09:45:26.564571+00:00 [info] <0.254.0> Running boot step rabbit_vhost_limit defined by app rabbit -09:45:26.565 rabbitmq> 2024-09-16 09:45:26.564619+00:00 [info] <0.254.0> Running boot step rabbit_federation_parameters defined by app rabbitmq_federation -09:45:26.565 rabbitmq> 2024-09-16 09:45:26.565111+00:00 [info] <0.254.0> Running boot step rabbit_federation_supervisor defined by app rabbitmq_federation -09:45:26.575 rabbitmq> 2024-09-16 09:45:26.575438+00:00 [info] <0.254.0> Running boot step rabbit_federation_queue defined by app rabbitmq_federation -09:45:26.575 rabbitmq> 2024-09-16 09:45:26.575667+00:00 [info] <0.254.0> Running boot step rabbit_federation_upstream_exchange defined by app rabbitmq_federation -09:45:26.575 rabbitmq> 2024-09-16 09:45:26.575763+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management -09:45:26.575 rabbitmq> 2024-09-16 09:45:26.575817+00:00 [info] <0.254.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent -09:45:26.575 rabbitmq> 2024-09-16 09:45:26.575845+00:00 [info] <0.254.0> Management plugin: using rates mode 'basic' -09:45:26.577 rabbitmq> 2024-09-16 09:45:26.576904+00:00 [info] <0.254.0> Running boot step recovery defined by app rabbit -09:45:26.592 rabbitmq> 2024-09-16 09:45:26.591698+00:00 [info] <0.254.0> Running boot step empty_db_check defined by app rabbit -09:45:26.592 rabbitmq> 2024-09-16 09:45:26.591819+00:00 [info] <0.254.0> Will seed default virtual host and user... -09:45:26.592 rabbitmq> 2024-09-16 09:45:26.591977+00:00 [info] <0.254.0> Adding vhost '/' (description: 'Default virtual host', tags: []) -09:45:26.649 rabbitmq> 2024-09-16 09:45:26.649412+00:00 [info] <0.630.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists -09:45:26.651 rabbitmq> 2024-09-16 09:45:26.651335+00:00 [info] <0.630.0> Setting segment_entry_count for vhost '/' with 0 queues to '2048' -09:45:26.671 rabbitmq> 2024-09-16 09:45:26.670871+00:00 [info] <0.630.0> Starting message stores for vhost '/' -09:45:26.672 rabbitmq> 2024-09-16 09:45:26.671511+00:00 [info] <0.639.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index -09:45:26.676 rabbitmq> 2024-09-16 09:45:26.675343+00:00 [info] <0.630.0> Started message store of type transient for vhost '/' -09:45:26.676 rabbitmq> 2024-09-16 09:45:26.675887+00:00 [info] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index -09:45:26.679 rabbitmq> 2024-09-16 09:45:26.678659+00:00 [warning] <0.643.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch -09:45:26.682 rabbitmq> 2024-09-16 09:45:26.681334+00:00 [info] <0.630.0> Started message store of type persistent for vhost '/' -09:45:26.682 rabbitmq> 2024-09-16 09:45:26.681688+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_classic_queue took 29ms -09:45:26.682 rabbitmq> 2024-09-16 09:45:26.681797+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_quorum_queue took 0ms -09:45:26.683 rabbitmq> 2024-09-16 09:45:26.681895+00:00 [info] <0.630.0> Recovering 0 queues of type rabbit_stream_queue took 0ms -09:45:26.692 rabbitmq> 2024-09-16 09:45:26.691512+00:00 [info] <0.254.0> Created user 'guest' -09:45:26.700 rabbitmq> 2024-09-16 09:45:26.700259+00:00 [info] <0.254.0> Successfully set user tags for user 'guest' to [administrator] -09:45:26.708 rabbitmq> 2024-09-16 09:45:26.707803+00:00 [info] <0.254.0> Successfully set permissions for user 'guest' in virtual host '/' to '.*', '.*', '.*' -09:45:26.708 rabbitmq> 2024-09-16 09:45:26.707916+00:00 [info] <0.254.0> Running boot step rabbit_observer_cli defined by app rabbit -09:45:26.708 rabbitmq> 2024-09-16 09:45:26.708065+00:00 [info] <0.254.0> Running boot step rabbit_looking_glass defined by app rabbit -09:45:26.708 rabbitmq> 2024-09-16 09:45:26.708096+00:00 [info] <0.254.0> Running boot step rabbit_core_metrics_gc defined by app rabbit -09:45:26.708 rabbitmq> 2024-09-16 09:45:26.708248+00:00 [info] <0.254.0> Running boot step background_gc defined by app rabbit -09:45:26.708 rabbitmq> 2024-09-16 09:45:26.708404+00:00 [info] <0.254.0> Running boot step routing_ready defined by app rabbit -09:45:26.708 rabbitmq> 2024-09-16 09:45:26.708451+00:00 [info] <0.254.0> Running boot step pre_flight defined by app rabbit -09:45:26.708 rabbitmq> 2024-09-16 09:45:26.708583+00:00 [info] <0.254.0> Running boot step notify_cluster defined by app rabbit -09:45:26.708 rabbitmq> 2024-09-16 09:45:26.708634+00:00 [info] <0.254.0> Running boot step networking defined by app rabbit -09:45:26.709 rabbitmq> 2024-09-16 09:45:26.708799+00:00 [info] <0.254.0> Running boot step rabbit_quorum_queue_periodic_membership_reconciliation defined by app rabbit -09:45:26.709 rabbitmq> 2024-09-16 09:45:26.709109+00:00 [info] <0.254.0> Running boot step definition_import_worker_pool defined by app rabbit -09:45:26.709 rabbitmq> 2024-09-16 09:45:26.709157+00:00 [info] <0.315.0> Starting worker pool 'definition_import_pool' with 4 processes in it -09:45:26.709 rabbitmq> 2024-09-16 09:45:26.709605+00:00 [info] <0.254.0> Running boot step cluster_name defined by app rabbit -09:45:26.710 rabbitmq> 2024-09-16 09:45:26.709806+00:00 [info] <0.254.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-6YScTwib8GQFrgpbHW10Vg' -09:45:26.716 rabbitmq> 2024-09-16 09:45:26.716423+00:00 [info] <0.254.0> Running boot step virtual_host_reconciliation defined by app rabbit -09:45:26.716 rabbitmq> 2024-09-16 09:45:26.716716+00:00 [info] <0.254.0> Running boot step direct_client defined by app rabbit -09:45:26.717 rabbitmq> 2024-09-16 09:45:26.716850+00:00 [info] <0.254.0> Running boot step rabbit_federation_exchange defined by app rabbitmq_federation -09:45:26.718 rabbitmq> 2024-09-16 09:45:26.717210+00:00 [info] <0.254.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management -09:45:26.718 rabbitmq> 2024-09-16 09:45:26.717643+00:00 [info] <0.680.0> Resetting node maintenance status -09:45:26.896 rabbitmq> 2024-09-16 09:45:26.896010+00:00 [warning] <0.709.0> Deprecated features: `management_metrics_collection`: Feature `management_metrics_collection` is deprecated. -09:45:26.896 rabbitmq> 2024-09-16 09:45:26.896010+00:00 [warning] <0.709.0> By default, this feature can still be used for now. -09:45:26.896 rabbitmq> 2024-09-16 09:45:26.896010+00:00 [warning] <0.709.0> Its use will not be permitted by default in a future minor RabbitMQ version and the feature will be removed from a future major RabbitMQ version; actual versions to be determined. -09:45:26.896 rabbitmq> 2024-09-16 09:45:26.896010+00:00 [warning] <0.709.0> To continue using this feature when it is not permitted by default, set the following parameter in your configuration: -09:45:26.896 rabbitmq> 2024-09-16 09:45:26.896010+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = true" -09:45:26.896 rabbitmq> 2024-09-16 09:45:26.896010+00:00 [warning] <0.709.0> To test RabbitMQ as if the feature was removed, set this in your configuration: -09:45:26.896 rabbitmq> 2024-09-16 09:45:26.896010+00:00 [warning] <0.709.0> "deprecated_features.permit.management_metrics_collection = false" -09:45:29.758 rabbitmq> 2024-09-16 09:45:29.758010+00:00 [info] <0.746.0> Management plugin: HTTP (non-TLS) listener started on port 15672 -09:45:29.758 rabbitmq> 2024-09-16 09:45:29.758145+00:00 [info] <0.776.0> Statistics database started. -09:45:29.758 rabbitmq> 2024-09-16 09:45:29.758225+00:00 [info] <0.775.0> Starting worker pool 'management_worker_pool' with 3 processes in it -09:45:29.766 rabbitmq> 2024-09-16 09:45:29.766124+00:00 [info] <0.794.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692 -09:45:29.766 rabbitmq> 2024-09-16 09:45:29.766251+00:00 [info] <0.680.0> Ready to start client connection listeners -09:45:29.768 rabbitmq> 2024-09-16 09:45:29.768020+00:00 [info] <0.838.0> started TCP listener on [::]:5672 -09:45:29.858 rabbitmq> completed with 5 plugins. -09:45:29.858 rabbitmq> 2024-09-16 09:45:29.858383+00:00 [info] <0.680.0> Server startup complete; 5 plugins started. -[INFO] DOCKER> Pattern 'Server startup complete' matched for container e01077a63a2a -09:45:29.858 rabbitmq> 2024-09-16 09:45:29.858383+00:00 [info] <0.680.0> * rabbitmq_prometheus -09:45:29.858 rabbitmq> 2024-09-16 09:45:29.858383+00:00 [info] <0.680.0> * rabbitmq_federation -09:45:29.858 rabbitmq> 2024-09-16 09:45:29.858383+00:00 [info] <0.680.0> * rabbitmq_management -09:45:29.858 rabbitmq> 2024-09-16 09:45:29.858383+00:00 [info] <0.680.0> * rabbitmq_management_agent -09:45:29.858 rabbitmq> 2024-09-16 09:45:29.858383+00:00 [info] <0.680.0> * rabbitmq_web_dispatch -09:45:29.934 rabbitmq> 2024-09-16 09:45:29.933687+00:00 [info] <0.9.0> Time to start RabbitMQ: 8206 ms -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Waited on url http://localhost:32883 and on log out 'Server startup complete' 8567 ms -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Start container 90f5d0fe33e1 -09:45:31.099 sqs> -09:45:31.099 sqs> LocalStack version: 3.7.3.dev27 -09:45:31.099 sqs> LocalStack build date: 2024-09-16 -09:45:31.099 sqs> LocalStack build git hash: b90cbb111 -09:45:31.099 sqs> -09:45:31.574 sqs> Ready. -[INFO] DOCKER> Pattern 'Ready.' matched for container 90f5d0fe33e1 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Waited on log out 'Ready.' 1512 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Start container 13409db2e42c -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT]: Start container 2b02c23345bb -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "rabbitmq-worker-languagedetection": Start container 96f45f185ef1 -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "rabbitmq-worker-languagedetection": Waiting on url http://localhost:32887/health-check?type=READY with method HEAD for status 200..399. -09:45:33.654 rabbitmq-worker-languagedetection> [2024-09-16 09:45:33.653Z #007.??? INFO - - ] startup.sh: Running startup scripts... -09:45:33.657 rabbitmq-worker-languagedetection> [2024-09-16 09:45:33.656Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -09:45:33.665 rabbitmq-worker-languagedetection> [2024-09-16 09:45:33.663Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -09:45:33.666 rabbitmq-worker-languagedetection> [2024-09-16 09:45:33.666Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -09:45:33.676 rabbitmq-worker-languagedetection> [2024-09-16 09:45:33.674Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -09:45:33.678 rabbitmq-worker-languagedetection> [2024-09-16 09:45:33.677Z #007.??? INFO - - ] startup.sh: Startup scripts completed -09:45:33.680 rabbitmq-worker-languagedetection> [2024-09-16 09:45:33.679Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,846 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,848 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,848 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,852 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,861 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,861 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,874 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 13 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,874 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,875 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,875 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,879 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,883 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,968 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,968 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:33,969 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,037 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,037 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,037 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,040 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,040 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,049 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,051 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,106 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,111 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,111 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,112 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,112 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,113 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,113 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,113 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -09:45:34.121 rabbitmq-worker-languagedetection> 09:45:34,113 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 238 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY -09:45:34.121 rabbitmq-worker-languagedetection> -09:45:34.365 rabbitmq-worker-languagedetection> [2024-09-16 09:45:34.343Z #1d3.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -09:45:35.444 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.444Z #1d3.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -09:45:35.446 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.446Z #1d3.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -09:45:35.452 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.452Z #1d3.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -09:45:35.474 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.473Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -09:45:35.478 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.477Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -09:45:35.480 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.479Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -09:45:35.482 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.481Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -09:45:35.495 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.495Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -09:45:35.496 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.496Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -09:45:35.498 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.497Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -09:45:35.570 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.570Z #1d3.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider -09:45:35.651 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.640Z #1d3.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} -09:45:35.758 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.757Z #1d3.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@42ea287{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -09:45:35.759 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.759Z #1d3.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@78cd163b{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -09:45:35.762 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.761Z #1d3.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS -09:45:35.772 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.771Z #1d3.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. -09:45:35.810 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.810Z #1d3.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE -09:45:35.814 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.814Z #1d3.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY -09:45:35.817 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.816Z #1d3.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY -09:45:35.820 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.817Z #1d3.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY -09:45:35.825 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.825Z #1d3.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE -09:45:35.826 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.825Z #1d3.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY -09:45:35.826 rabbitmq-worker-languagedetection> [2024-09-16 09:45:35.826Z #1d3.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE -09:45:35.831 rabbitmq-worker-languagedetection> -09:45:36.420 rabbitmq-worker-languagedetection> [2024-09-16 09:45:36.420Z #1d3.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} -09:45:36.422 rabbitmq-worker-languagedetection> [2024-09-16 09:45:36.422Z #1d3.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@23468512{/,null,AVAILABLE} -09:45:36.425 rabbitmq-worker-languagedetection> [2024-09-16 09:45:36.425Z #1d3.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} -09:45:36.426 rabbitmq-worker-languagedetection> [2024-09-16 09:45:36.426Z #1d3.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@718fd7c1{/,null,AVAILABLE} -09:45:36.435 rabbitmq-worker-languagedetection> [2024-09-16 09:45:36.434Z #1d3.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@42ea287{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -09:45:36.437 rabbitmq-worker-languagedetection> [2024-09-16 09:45:36.436Z #1d3.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@78cd163b{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -09:45:36.439 rabbitmq-worker-languagedetection> [2024-09-16 09:45:36.439Z #1d3.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@4c1bdcc2{STARTING}[11.0.23,sto=30000] @2756ms -09:45:36.541 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:36 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 17 -09:45:37.002 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:37.507 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:37 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -09:45:38.020 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:38.524 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:38 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:39.029 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -09:45:39.536 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:39 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:40.049 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -09:45:40.553 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:40 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:41.058 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:41.563 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:41 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:42.068 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:42.573 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:42 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:43.082 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:43.594 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:43 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -09:45:44.102 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:44.610 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:44 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -09:45:45.122 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -09:45:45.627 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:45 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:46.135 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:46.644 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:46 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:47.155 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -09:45:47.667 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:47 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -09:45:48.176 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:48.684 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:48 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -09:45:49.189 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:49.698 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:49 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:50.208 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:50 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:50.720 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:50 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -09:45:50.826 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.826Z #1d3.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE -09:45:50.842 rabbitmq> 2024-09-16 09:45:50.842188+00:00 [info] <0.845.0> accepting AMQP connection <0.845.0> (172.17.0.6:59904 -> 172.17.0.3:5672) -09:45:50.861 rabbitmq> 2024-09-16 09:45:50.861355+00:00 [info] <0.845.0> connection <0.845.0> (172.17.0.6:59904 -> 172.17.0.3:5672): user 'guest' authenticated and granted access to vhost '/' -09:45:50.869 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.868Z #1d3.034 WARN - - ] c.h.c.util.rabbitmq.RabbitUtil: Priority is not supported with quorum queues -09:45:50.934 rabbitmq> 2024-09-16 09:45:50.933968+00:00 [notice] <0.866.0> queue 'LanguageDetectionWorker-input-1' in vhost '/': candidate -> leader in term: 1 machine version: 3 -09:45:50.934 rabbitmq> 2024-09-16 09:45:50.934421+00:00 [info] <0.860.0> ra: started cluster %2F_LanguageDetectionWorker-input-1 with 1 servers -09:45:50.935 rabbitmq> 2024-09-16 09:45:50.934421+00:00 [info] <0.860.0> 0 servers failed to start: [] -09:45:50.935 rabbitmq> 2024-09-16 09:45:50.934421+00:00 [info] <0.860.0> Leader: {'%2F_LanguageDetectionWorker-input-1',rabbit@e01077a63a2a} -09:45:50.967 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.966Z #1d3.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE -09:45:50.967 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.967Z #1d3.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY -09:45:50.967 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.967Z #1d3.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE -09:45:50.969 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.968Z #1d3.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY -09:45:50.969 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.968Z #1d3.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY -09:45:50.969 rabbitmq-worker-languagedetection> [2024-09-16 09:45:50.969Z #1d3.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "rabbitmq-worker-languagedetection": Waited on url http://localhost:32887/health-check?type=READY 17556 ms -09:45:51.231 rabbitmq-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:51 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Start container 8fa63a9a1b91 -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Waiting on url http://localhost:32889/health-check?type=READY with method HEAD for status 200..399. -09:45:51.667 sqs-worker-languagedetection> [2024-09-16 09:45:51.666Z #007.??? INFO - - ] startup.sh: Running startup scripts... -09:45:51.671 sqs-worker-languagedetection> [2024-09-16 09:45:51.670Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-base.sh... -09:45:51.683 sqs-worker-languagedetection> [2024-09-16 09:45:51.679Z #00E.??? INFO - - ] install-ca-cert-base.sh: Not installing CA Certificate. -09:45:51.684 sqs-worker-languagedetection> [2024-09-16 09:45:51.683Z #007.??? INFO - - ] startup.sh: Running install-ca-cert-java.sh... -09:45:51.694 sqs-worker-languagedetection> [2024-09-16 09:45:51.692Z #016.??? INFO - - ] install-ca-cert-java.sh: Not installing CA Certificate for Java -09:45:51.696 sqs-worker-languagedetection> [2024-09-16 09:45:51.695Z #007.??? INFO - - ] startup.sh: Startup scripts completed -09:45:51.698 sqs-worker-languagedetection> [2024-09-16 09:45:51.697Z #007.??? INFO - - ] startup.sh: The RUNAS_USER environment variable is not set, subsequent commands will be run as the default user. -09:45:52.005 sqs-worker-languagedetection> 09:45:51,834 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -09:45:52.005 sqs-worker-languagedetection> 09:45:51,835 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - No custom configurators were discovered as a service. -09:45:52.005 sqs-worker-languagedetection> 09:45:51,836 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -09:45:52.005 sqs-worker-languagedetection> 09:45:51,836 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -09:45:52.005 sqs-worker-languagedetection> 09:45:51,843 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -09:45:52.005 sqs-worker-languagedetection> 09:45:51,843 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -09:45:52.005 sqs-worker-languagedetection> 09:45:51,851 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 7 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -09:45:52.005 sqs-worker-languagedetection> 09:45:51,851 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -09:45:52.005 sqs-worker-languagedetection> 09:45:51,852 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -09:45:52.005 sqs-worker-languagedetection> 09:45:51,852 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -09:45:52.005 sqs-worker-languagedetection> 09:45:51,856 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] -09:45:52.005 sqs-worker-languagedetection> 09:45:51,861 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@7880cdf3 - URL [jar:file:/maven/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -09:45:52.005 sqs-worker-languagedetection> 09:45:51,905 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -09:45:52.005 sqs-worker-languagedetection> 09:45:51,905 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -09:45:52.005 sqs-worker-languagedetection> 09:45:51,905 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -09:45:52.005 sqs-worker-languagedetection> 09:45:51,952 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -09:45:52.005 sqs-worker-languagedetection> 09:45:51,952 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -09:45:52.005 sqs-worker-languagedetection> 09:45:51,952 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -09:45:52.005 sqs-worker-languagedetection> 09:45:51,955 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -09:45:52.005 sqs-worker-languagedetection> 09:45:51,955 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -09:45:52.005 sqs-worker-languagedetection> 09:45:51,962 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -09:45:52.005 sqs-worker-languagedetection> 09:45:51,965 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -09:45:52.005 sqs-worker-languagedetection> 09:45:51,992 |-INFO in ch.qos.logback.classic.pattern.DateConverter@1c93084c - Setting zoneId to "UTC" -09:45:52.005 sqs-worker-languagedetection> 09:45:51,996 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -09:45:52.005 sqs-worker-languagedetection> 09:45:51,996 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -09:45:52.005 sqs-worker-languagedetection> 09:45:51,996 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -09:45:52.005 sqs-worker-languagedetection> 09:45:51,997 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@5be6e01c - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -09:45:52.005 sqs-worker-languagedetection> 09:45:51,997 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -09:45:52.005 sqs-worker-languagedetection> 09:45:51,997 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@6ef888f6 - End of configuration. -09:45:52.005 sqs-worker-languagedetection> 09:45:51,998 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@10e92f8f - Registering current configuration as safe fallback point -09:45:52.005 sqs-worker-languagedetection> 09:45:51,998 |-INFO in ch.qos.logback.classic.util.ContextInitializer@36c88a32 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 146 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY -09:45:52.005 sqs-worker-languagedetection> -09:45:52.203 sqs-worker-languagedetection> [2024-09-16 09:45:52.185Z #cf5.001 INFO - - ] o.h.v.internal.util.Version: HV000001: Hibernate Validator 8.0.1.Final -09:45:52.925 sqs-worker-languagedetection> [2024-09-16 09:45:52.925Z #cf5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering jersey handler with root path prefix: / -09:45:52.927 sqs-worker-languagedetection> [2024-09-16 09:45:52.926Z #cf5.001 INFO - - ] i.d.c.s.DefaultServerFactory: Registering admin handler with root path prefix: / -09:45:52.927 sqs-worker-languagedetection> [2024-09-16 09:45:52.927Z #cf5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker initializing. -09:45:52.939 sqs-worker-languagedetection> [2024-09-16 09:45:52.939Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation NullCipherProvider -09:45:52.941 sqs-worker-languagedetection> [2024-09-16 09:45:52.941Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation JsonCodec -09:45:52.942 sqs-worker-languagedetection> [2024-09-16 09:45:52.942Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation CafConfigurationDecoderProvider -09:45:52.943 sqs-worker-languagedetection> [2024-09-16 09:45:52.943Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileConfigurationSourceProvider -09:45:52.951 sqs-worker-languagedetection> [2024-09-16 09:45:52.950Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation DocumentWorkerFactoryProvider -09:45:52.953 sqs-worker-languagedetection> [2024-09-16 09:45:52.952Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation WorkerQueueProviderImpl -09:45:52.955 sqs-worker-languagedetection> [2024-09-16 09:45:52.954Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation FileSystemDataStoreProvider -09:45:53.005 sqs-worker-languagedetection> [2024-09-16 09:45:53.005Z #cf5.001 INFO - - ] com.hpe.caf.util.ModuleLoader: Detected component implementation Cld2DetectorProvider -09:45:53.058 sqs-worker-languagedetection> [2024-09-16 09:45:53.053Z #cf5.001 INFO - - ] i.d.core.server.ServerFactory: {"message":"Starting WorkerApplication\n\n\n __ _ \n ___ __ _ / _| __ _____ _ __| | _____ _ __ \n / __/ _` | |_ ____\\ \\ /\\ / / _ \\| '__| |/ / _ \\ '__|\n| (_| (_| | _|_____\\ V V / (_) | | | < __/ | \n \\___\\__,_|_| \\_/\\_/ \\___/|_| |_|\\_\\___|_| \n \n"} -09:45:53.145 sqs-worker-languagedetection> [2024-09-16 09:45:53.145Z #cf5.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -09:45:53.145 sqs-worker-languagedetection> [2024-09-16 09:45:53.145Z #cf5.001 INFO - - ] o.e.j.setuid.SetUIDListener: Opened admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -09:45:53.147 sqs-worker-languagedetection> [2024-09-16 09:45:53.147Z #cf5.001 INFO - - ] o.eclipse.jetty.server.Server: jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.4+7-LTS -09:45:53.153 sqs-worker-languagedetection> [2024-09-16 09:45:53.153Z #cf5.001 INFO - - ] c.h.c.w.core.WorkerApplication: Worker starting up. -09:45:53.165 sqs-worker-languagedetection> [2024-09-16 09:45:53.165Z #cf5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-alive, type=ALIVE -09:45:53.169 sqs-worker-languagedetection> [2024-09-16 09:45:53.169Z #cf5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=configuration, type=READY -09:45:53.170 sqs-worker-languagedetection> [2024-09-16 09:45:53.170Z #cf5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=transient, type=READY -09:45:53.170 sqs-worker-languagedetection> [2024-09-16 09:45:53.170Z #cf5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=store, type=READY -09:45:53.171 sqs-worker-languagedetection> [2024-09-16 09:45:53.171Z #cf5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=deadlocks, type=ALIVE -09:45:53.185 sqs-worker-languagedetection> [2024-09-16 09:45:53.185Z #cf5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=worker-ready, type=READY -09:45:53.187 sqs-worker-languagedetection> [2024-09-16 09:45:53.186Z #cf5.001 WARN - - ] i.d.health.HealthCheckManager: A critical unhealthy initialized dependency has not yet recovered: name=queue, type=ALIVE -09:45:53.190 sqs-worker-languagedetection> -09:45:53.467 sqs-worker-languagedetection> [2024-09-16 09:45:53.466Z #cf5.001 INFO - - ] i.d.j.DropwizardResourceConfig: {"message":"The following paths were found for the configured resources:\n\n NONE\n"} -09:45:53.468 sqs-worker-languagedetection> [2024-09-16 09:45:53.468Z #cf5.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@2d5a1588{/,null,AVAILABLE} -09:45:53.471 sqs-worker-languagedetection> [2024-09-16 09:45:53.471Z #cf5.001 INFO - - ] i.d.c.setup.AdminEnvironment: {"message":"tasks = \n\n POST /tasks/log-level (io.dropwizard.servlets.tasks.LogConfigurationTask)\n POST /tasks/gc (io.dropwizard.servlets.tasks.GarbageCollectionTask)\n"} -09:45:53.471 sqs-worker-languagedetection> [2024-09-16 09:45:53.471Z #cf5.001 INFO - - ] o.e.j.s.handler.ContextHandler: Started i.d.j.MutableServletContextHandler@1c61eda5{/,null,AVAILABLE} -09:45:53.476 sqs-worker-languagedetection> [2024-09-16 09:45:53.476Z #cf5.001 INFO - - ] o.e.j.server.AbstractConnector: Started application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -09:45:53.479 sqs-worker-languagedetection> [2024-09-16 09:45:53.477Z #cf5.001 INFO - - ] o.e.j.server.AbstractConnector: Started admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -09:45:53.480 sqs-worker-languagedetection> [2024-09-16 09:45:53.480Z #cf5.001 INFO - - ] o.eclipse.jetty.server.Server: Started Server@517a2b0{STARTING}[11.0.23,sto=30000] @1778ms -09:45:53.542 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:53 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 16 -09:45:54.042 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:54 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:54.555 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:54 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -09:45:55.066 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:55 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:55.572 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:55 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:56.084 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:56 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -09:45:56.591 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:56 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:57.102 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:57 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:57.616 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:57 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 3 -09:45:58.125 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:58 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:58.631 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:58 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:45:59.145 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:59 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -09:45:59.649 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:45:59 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:46:00.154 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:00 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:46:00.660 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:00 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:46:01.164 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:01 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -09:46:01.668 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:01 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:46:02.173 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:02 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -09:46:02.679 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:02 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:46:03.183 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:03 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:46:03.692 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:03 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:46:03.732 rabbitmq-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:46:03 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 3 -09:46:04.197 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:04 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:46:04.703 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:04 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:46:05.213 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:05 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -09:46:05.718 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:05 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:46:06.223 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:06 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 0 -09:46:06.728 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:06 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:46:07.235 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:07 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:46:07.741 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:07 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:46:08.172 sqs-worker-languagedetection> [2024-09-16 09:46:08.172Z #cf5.038 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=deadlocks, type=ALIVE -09:46:08.245 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:08 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -09:46:08.754 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:08 +0000] "HEAD /health-check?type=READY HTTP/1.1" 503 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 2 -09:46:09.219 sqs-worker-languagedetection> [2024-09-16 09:46:09.219Z #cf5.039 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-ready, type=READY -09:46:09.219 sqs-worker-languagedetection> [2024-09-16 09:46:09.219Z #cf5.040 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=queue, type=ALIVE -09:46:09.220 sqs-worker-languagedetection> [2024-09-16 09:46:09.219Z #cf5.034 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=worker-alive, type=ALIVE -09:46:09.223 sqs-worker-languagedetection> [2024-09-16 09:46:09.222Z #cf5.037 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=store, type=READY -09:46:09.223 sqs-worker-languagedetection> [2024-09-16 09:46:09.222Z #cf5.035 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=configuration, type=READY -09:46:09.223 sqs-worker-languagedetection> [2024-09-16 09:46:09.222Z #cf5.036 INFO - - ] i.d.health.HealthCheckManager: A critical dependency is now healthy: name=transient, type=READY -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Waited on url http://localhost:32889/health-check?type=READY 17557 ms -09:46:09.258 sqs-worker-languagedetection> 192.168.1.1 - - [16/Sep/2024:09:46:09 +0000] "HEAD /health-check?type=READY HTTP/1.1" 200 0 "-" "Apache-HttpClient/4.5.13 (Java/17.0.11)" 1 -[INFO] -[INFO] --- failsafe:3.1.2:integration-test (sqs-implementation-testing) @ worker-languagedetection-container --- -[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider -[INFO] -[INFO] ------------------------------------------------------- -[INFO] T E S T S -[INFO] ------------------------------------------------------- -[INFO] Running com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT -10:46:10,032 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -10:46:10,037 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - No custom configurators were discovered as a service. -10:46:10,037 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -10:46:10,039 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -10:46:10,046 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -10:46:10,047 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -10:46:10,056 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 9 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -10:46:10,056 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -10:46:10,057 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -10:46:10,059 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -10:46:10,064 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] -10:46:10,082 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@b2c9a9c - URL [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -10:46:10,158 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -10:46:10,159 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -10:46:10,159 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -10:46:10,235 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -10:46:10,235 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -10:46:10,235 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -10:46:10,244 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -10:46:10,244 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -10:46:10,255 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -10:46:10,257 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -10:46:10,339 |-INFO in ch.qos.logback.classic.pattern.DateConverter@fa4c865 - Setting zoneId to "UTC" -10:46:10,343 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -10:46:10,343 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -10:46:10,344 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -10:46:10,345 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -10:46:10,345 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -10:46:10,345 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@3bd82cf5 - End of configuration. -10:46:10,346 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@544fa968 - Registering current configuration as safe fallback point -10:46:10,346 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 289 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_field_multi_lang_en_fr_ger.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_multi_datasource.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_single_datasource.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_invalid.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple_multi.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_english.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_french.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_german.yaml.testcase - -=============== Starting test Item single_lang_french.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_french.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_french.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_french.yaml -Description: null -Associated tickets: null -Comments: single_lang_french.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 1 -Number of successful test cases (all test instances passes): 1 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid_combined.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 2 -Number of successful test cases (all test instances passes): 2 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown.yaml -================================================================================ -09:46:21.736 sqs-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:46:21 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 2 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 3 -Number of successful test cases (all test instances passes): 3 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_simple_multi.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_simple_multi.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODE_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_FR_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_GER_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_simple_multi.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_simple_multi.yaml -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 4 -Number of successful test cases (all test instances passes): 4 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown_split.yaml -================================================================================ -09:46:33.775 rabbitmq-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:46:33 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 5 -Number of successful test cases (all test instances passes): 5 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_combined.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 6 -Number of successful test cases (all test instances passes): 6 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 7 -Number of successful test cases (all test instances passes): 7 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid_split.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 8 -Number of successful test cases (all test instances passes): 8 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item single_lang_english.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_english.yaml -================================================================================ -09:46:51.781 sqs-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:46:51 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_english.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_english.yaml -Description: null -Associated tickets: null -Comments: single_lang_english.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 9 -Number of successful test cases (all test instances passes): 9 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_lang_single_datasource.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_lang_single_datasource.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_lang_single_datasource.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_lang_single_datasource.yaml -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 10 -Number of successful test cases (all test instances passes): 10 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_field_multi_lang_en_fr_ger.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_field_multi_lang_en_fr_ger.yaml -================================================================================ -09:47:03.812 rabbitmq-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:47:03 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 0 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODE_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_FR_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_GER_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_field_multi_lang_en_fr_ger.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 11 -Number of successful test cases (all test instances passes): 11 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang_combined.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 12 -Number of successful test cases (all test instances passes): 12 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 13 -Number of successful test cases (all test instances passes): 13 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang_split.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 14 -Number of successful test cases (all test instances passes): 14 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== -09:47:19.532 sqs-worker-languagedetection> [2024-09-16 09:47:19.531Z #cf5.054 ERROR - - ] c.h.c.w.l.LanguageDetectionWorker: Failed to read result format specified. - -=============== Starting test Item resultFormat_invalid.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_invalid.yaml -================================================================================ -09:47:21.825 sqs-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:47:21 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_invalid.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_invalid.yaml -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 15 -Number of successful test cases (all test instances passes): 15 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown_combined.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 16 -Number of successful test cases (all test instances passes): 16 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_simple.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_simple.yaml -================================================================================ -09:47:33.852 rabbitmq-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:47:33 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_simple.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_simple.yaml -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 17 -Number of successful test cases (all test instances passes): 17 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_lang_multi_datasource.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_lang_multi_datasource.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_lang_multi_datasource.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 18 -Number of successful test cases (all test instances passes): 18 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_split.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_multi_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 19 -Number of successful test cases (all test instances passes): 19 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item single_lang_german.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_german.yaml -================================================================================ -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_multi_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_german.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_german.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_german.yaml -Description: null -Associated tickets: null -Comments: single_lang_german.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_german.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_german.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 20 -Number of successful test cases (all test instances passes): 20 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang.yaml -================================================================================ -09:47:51.875 sqs-worker-languagedetection> [0:0:0:0:0:0:0:1] - - [16/Sep/2024:09:47:51 +0000] "GET /health-check?type=READY HTTP/1.1" 200 2 "-" "curl/7.76.1" 1 -single_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -Item with id single_lang_french.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple_multi.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_invalid_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -Item with id single_lang_english.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_single_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -Item with id multi_field_multi_lang_en_fr_ger.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_multi_lang_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -Item with id resultFormat_invalid.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_unknown_combined.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -Item with id resultFormat_simple.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -Item with id multi_lang_multi_datasource.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS -Item with id resultFormat_complex_split.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -single_lang_german.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS -Item with id single_lang_german.yaml was not found. Skipping. -Test case has 1 result items yet to be processed. -resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_german.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_german.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 21 -Number of successful test cases (all test instances passes): 21 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== -[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 105.0 s -- in com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT -[INFO] -[INFO] Results: -[INFO] -[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0 -[INFO] -[INFO] -[INFO] --- failsafe:3.1.2:integration-test (rabbitmq-implementation-testing) @ worker-languagedetection-container --- -[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider -[INFO] -[INFO] ------------------------------------------------------- -[INFO] T E S T S -[INFO] ------------------------------------------------------- -[INFO] Running com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT -10:47:55,909 |-INFO in ch.qos.logback.classic.LoggerContext[default] - This is logback-classic version 1.5.7 -10:47:55,914 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - No custom configurators were discovered as a service. -10:47:55,914 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.joran.SerializedModelConfigurator -10:47:55,916 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.joran.SerializedModelConfigurator -10:47:55,923 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.scmo] -10:47:55,924 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.scmo] -10:47:55,933 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.joran.SerializedModelConfigurator.configure() call lasted 10 milliseconds. ExecutionStatus=INVOKE_NEXT_IF_ANY -10:47:55,933 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Trying to configure with ch.qos.logback.classic.util.DefaultJoranConfigurator -10:47:55,935 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - Constructed configurator of type class ch.qos.logback.classic.util.DefaultJoranConfigurator -10:47:55,936 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] -10:47:55,940 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] -10:47:55,955 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@b2c9a9c - URL [jar:file:/home/david/.m2/repository/com/github/cafapi/logging/caf-logging-logback/2.1.0-374/caf-logging-logback-2.1.0-374.jar!/logback.xml] is not of type file -10:47:56,027 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 20 -10:47:56,027 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 22 -10:47:56,027 |-WARN in ch.qos.logback.core.joran.action.ConversionRuleAction - [converterClass] attribute is deprecated and replaced by [class]. See element [conversionRule] near line 24 -10:47:56,111 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word pidtid with class [com.github.cafapi.logging.logback.converters.ProcessAndThreadIdConverter] -10:47:56,111 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word sanitize with class [com.github.cafapi.logging.logback.converters.SanitizeConverter] -10:47:56,111 |-INFO in ch.qos.logback.core.model.processor.ConversionRuleModelHandler - registering conversion word maybeJsonMsgAndEx with class [com.github.cafapi.logging.logback.converters.MaybeJsonMessageConverter] -10:47:56,122 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - Processing appender named [STDERR] -10:47:56,122 |-INFO in ch.qos.logback.core.model.processor.AppenderModelHandler - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] -10:47:56,135 |-INFO in ch.qos.logback.core.model.processor.ImplicitModelHandler - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property -10:47:56,138 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}): %maybeJsonMsgAndEx{-,-}%n" substituted for "[%date{yyyy-MM-dd HH:mm:ss.SSS,UTC}Z %pidtid %-5level %-12.-12sanitize(%mdc{tenantId:--}) %-4.-4sanitize(%mdc{correlationId:--})] %sanitize(%logger{30}):${patternExtension:- }%maybeJsonMsgAndEx{${packages:--},${maxStackTraceLines:--}}%n" -10:47:56,238 |-INFO in ch.qos.logback.classic.pattern.DateConverter@fa4c865 - Setting zoneId to "UTC" -10:47:56,242 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "INFO" substituted for "${CAF_LOG_LEVEL:-INFO}" -10:47:56,243 |-INFO in ch.qos.logback.classic.model.processor.RootLoggerModelHandler - Setting level of ROOT logger to INFO -10:47:56,243 |-INFO in ch.qos.logback.core.model.processor.AppenderRefModelHandler - Attaching appender named [STDERR] to Logger[ROOT] -10:47:56,245 |-INFO in ch.qos.logback.core.model.processor.ModelInterpretationContext@4c178a76 - value "ERROR" substituted for "${CAF_LOG_LEVEL_HIBERNATE:-ERROR}" -10:47:56,245 |-INFO in ch.qos.logback.classic.model.processor.LoggerModelHandler - Setting level of logger [org.hibernate.engine] to ERROR -10:47:56,245 |-INFO in ch.qos.logback.core.model.processor.DefaultProcessor@3bd82cf5 - End of configuration. -10:47:56,246 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@544fa968 - Registering current configuration as safe fallback point -10:47:56,246 |-INFO in ch.qos.logback.classic.util.ContextInitializer@2362f559 - ch.qos.logback.classic.util.DefaultJoranConfigurator.configure() call lasted 311 milliseconds. ExecutionStatus=DO_NOT_INVOKE_NEXT_IF_ANY - -09:47:58.482 rabbitmq> 2024-09-16 09:47:58.482066+00:00 [info] <0.926.0> accepting AMQP connection <0.926.0> (192.168.1.1:54088 -> 172.17.0.3:5672) -09:47:58.612 rabbitmq> 2024-09-16 09:47:58.612033+00:00 [info] <0.926.0> connection <0.926.0> (192.168.1.1:54088 -> 172.17.0.3:5672): user 'guest' authenticated and granted access to vhost '/' -09:47:58.696 rabbitmq> 2024-09-16 09:47:58.696340+00:00 [notice] <0.946.0> queue 'LanguageDetectionWorker-output-1' in vhost '/': candidate -> leader in term: 1 machine version: 3 -09:47:58.696 rabbitmq> 2024-09-16 09:47:58.696512+00:00 [info] <0.940.0> ra: started cluster %2F_LanguageDetectionWorker-output-1 with 1 servers -09:47:58.696 rabbitmq> 2024-09-16 09:47:58.696512+00:00 [info] <0.940.0> 0 servers failed to start: [] -09:47:58.696 rabbitmq> 2024-09-16 09:47:58.696512+00:00 [info] <0.940.0> Leader: {'%2F_LanguageDetectionWorker-output-1',rabbit@e01077a63a2a} -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_field_multi_lang_en_fr_ger.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_multi_datasource.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/multi_lang_single_datasource.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_invalid_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_multi_lang_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_combined.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_complex_unknown_split.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_invalid.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/resultFormat_simple_multi.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_english.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_french.yaml.testcase -Reading input file: /mnt/d/SRC/JAVA/worker-languagedetection/worker-languagedetection-container/test-data/input/single_lang_german.yaml.testcase - -=============== Starting test Item resultFormat_complex_invalid_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid_combined.yaml -================================================================================ -09:47:59.290 rabbitmq-worker-languagedetection> [2024-09-16 09:47:59.290Z #1d3.054 WARN - - ] c.h.c.util.rabbitmq.RabbitUtil: Priority is not supported with quorum queues -New deliveryresultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_combined.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 1 -Number of successful test cases (all test instances passes): 1 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== -09:47:59.435 rabbitmq-worker-languagedetection> [2024-09-16 09:47:59.435Z #1d3.054 ERROR - - ] c.h.c.w.l.LanguageDetectionWorker: Failed to read result format specified. - -=============== Starting test Item resultFormat_invalid.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_invalid.yaml -================================================================================ -New deliveryresultFormat_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_invalid.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_invalid.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_invalid.yaml -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 2 -Number of successful test cases (all test instances passes): 2 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_simple.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_simple.yaml -================================================================================ -New deliveryresultFormat_simple.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_simple.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_simple.yaml -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 3 -Number of successful test cases (all test instances passes): 3 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid_split.yaml -================================================================================ -New deliveryresultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid_split.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 4 -Number of successful test cases (all test instances passes): 4 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_split.yaml -================================================================================ -New deliveryresultFormat_complex_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 5 -Number of successful test cases (all test instances passes): 5 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang.yaml -================================================================================ -New deliveryresultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 6 -Number of successful test cases (all test instances passes): 6 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang_split.yaml -================================================================================ -New deliveryresultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 7 -Number of successful test cases (all test instances passes): 7 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_lang_multi_datasource.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_lang_multi_datasource.yaml -================================================================================ -New deliverymulti_lang_multi_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_multi_datasource.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_lang_multi_datasource.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 8 -Number of successful test cases (all test instances passes): 8 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item single_lang_english.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_english.yaml -================================================================================ -New deliverysingle_lang_english.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_english.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_english.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_english.yaml -Description: null -Associated tickets: null -Comments: single_lang_english.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 9 -Number of successful test cases (all test instances passes): 9 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_invalid.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_invalid.yaml -================================================================================ -New deliveryresultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_invalid.yaml, status: RESULT_SUCCESS -*** Validating 'failures' -*** Created validator: CollectionValidator -*** Validating 'failureId' -*** Created validator: ValuePropertyValidator -*** Validating 'failureMessage' -*** Created validator: ValuePropertyValidator -Item resultFormat_complex_invalid.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_invalid.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 10 -Number of successful test cases (all test instances passes): 10 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_field_multi_lang_en_fr_ger.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_field_multi_lang_en_fr_ger.yaml -================================================================================ -New deliverymulti_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_field_multi_lang_en_fr_ger.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODE_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_FR_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_GER_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_field_multi_lang_en_fr_ger.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 11 -Number of successful test cases (all test instances passes): 11 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_simple_multi.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_simple_multi.yaml -================================================================================ -New deliveryresultFormat_simple_multi.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_simple_multi.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODE_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_FR_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'LANGUAGE_CODE_GER_CONTENT' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_simple_multi.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_simple_multi.yaml -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 12 -Number of successful test cases (all test instances passes): 12 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item single_lang_french.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_french.yaml -================================================================================ -New deliverysingle_lang_french.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_french.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_french.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_french.yaml -Description: null -Associated tickets: null -Comments: single_lang_french.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 13 -Number of successful test cases (all test instances passes): 13 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown_split.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown_split.yaml -================================================================================ -New deliveryresultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_split.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown_split.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown_split.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 14 -Number of successful test cases (all test instances passes): 14 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item multi_lang_single_datasource.yaml ====================== -================================================================================ - QUEUEING NEW TASK: multi_lang_single_datasource.yaml -================================================================================ -New deliverymulti_lang_single_datasource.yaml, status: RESULT_SUCCESS -New delivery: task id: multi_lang_single_datasource.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item multi_lang_single_datasource.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: multi_lang_single_datasource.yaml -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 15 -Number of successful test cases (all test instances passes): 15 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_combined.yaml -================================================================================ -New deliveryresultFormat_complex_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 16 -Number of successful test cases (all test instances passes): 16 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_multi_lang_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_multi_lang_combined.yaml -================================================================================ -New deliveryresultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_multi_lang_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_multi_lang_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 17 -Number of successful test cases (all test instances passes): 17 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown.yaml -================================================================================ -New deliveryresultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 18 -Number of successful test cases (all test instances passes): 18 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item single_lang_german.yaml ====================== -================================================================================ - QUEUEING NEW TASK: single_lang_german.yaml -================================================================================ -New deliverysingle_lang_german.yaml, status: RESULT_SUCCESS -New delivery: task id: single_lang_german.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'DetectedLanguage2_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage2_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_Code' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage1_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_Name' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguage3_ConfidencePercentage' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_Status' -*** Created validator: DocumentWorkerFieldChangesValidator -*** Validating 'DetectedLanguages_ReliableResult' -*** Created validator: DocumentWorkerFieldChangesValidator -Item single_lang_german.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: single_lang_german.yaml -Description: null -Associated tickets: null -Comments: single_lang_german.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_german.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_german.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 19 -Number of successful test cases (all test instances passes): 19 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex.yaml -================================================================================ -New deliveryresultFormat_complex.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_german.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_german.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 20 -Number of successful test cases (all test instances passes): 20 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== - -=============== Starting test Item resultFormat_complex_unknown_combined.yaml ====================== -================================================================================ - QUEUEING NEW TASK: resultFormat_complex_unknown_combined.yaml -================================================================================ -New deliveryresultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -New delivery: task id: resultFormat_complex_unknown_combined.yaml, status: RESULT_SUCCESS -*** Validating 'fieldChanges' -*** Created validator: PropertyMapValidator -*** Validating 'LANGUAGE_CODES' -*** Created validator: DocumentWorkerFieldChangesValidator -Item resultFormat_complex_unknown_combined.yaml: Result processor success: true -Test case has no remaining items awaiting processing. -================================================================================ - EXECUTION REPORT -================================================================================ - - Completed successfully all test cases. - - Test Instances: -================================================================================ - -Test case id: resultFormat_complex_unknown_combined.yaml -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml -*** TEST INSTANCE SUCCEEDED? true - -============================================ - -Number of tests passed:1 -Number of tests failed:0 - -================================================================================ - REPORT PER TEST CASE -================================================================================ - -Test case id: single_lang_german.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_german.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_multi_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_multi_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_french.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_french.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_lang_single_datasource.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_lang_single_datasource.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_simple_multi.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_simple_multi.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: multi_field_multi_lang_en_fr_ger.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: multi_field_multi_lang_en_fr_ger.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_invalid.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_invalid.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_combined.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_combined.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_multi_lang_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_multi_lang_split.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_unknown.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_unknown.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: single_lang_english.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: single_lang_english.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex.yaml - -***************************** - -Failed test instances: - - -======================================= - -Test case id: resultFormat_complex_split.yaml -Number of all test instances: 1 -Successful: 1 -Failed: 0 - -***************************** - -Successful test instances: - -Description: null -Associated tickets: null -Comments: resultFormat_complex_split.yaml - -***************************** - -Failed test instances: - - -======================================= - - -================================================================================ - -Number of all test cases: 21 -Number of successful test cases (all test instances passes): 21 -Number of failed test cases: 0 - -================================================================================ -=============== Finished successfully ====================== -09:48:00.647 rabbitmq> 2024-09-16 09:48:00.646898+00:00 [info] <0.926.0> closing AMQP connection <0.926.0> (192.168.1.1:54088 -> 172.17.0.3:5672, vhost: '/', user: 'guest') -Closing queue connection -[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.051 s -- in com.hpe.caf.worker.languagedetection.LanguageDetectionWorkerAcceptanceIT -[INFO] -[INFO] Results: -[INFO] -[INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0 -[INFO] -[INFO] -[INFO] --- docker:0.43.4:stop (stop) @ worker-languagedetection-container --- -09:48:01.024 sqs-worker-languagedetection> [2024-09-16 09:48:01.024Z #cf5.033 INFO - - ] o.eclipse.jetty.server.Server: Stopped Server@517a2b0{STOPPING}[11.0.23,sto=30000] -09:48:01.024 sqs-worker-languagedetection> [2024-09-16 09:48:01.024Z #cf5.033 INFO - - ] o.eclipse.jetty.server.Server: Shutdown Server@517a2b0{STOPPING}[11.0.23,sto=30000] -09:48:01.027 sqs-worker-languagedetection> [2024-09-16 09:48:01.026Z #cf5.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped application@35267fd4{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -09:48:01.027 sqs-worker-languagedetection> [2024-09-16 09:48:01.027Z #cf5.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped admin@397ef2{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -09:48:01.029 sqs-worker-languagedetection> [2024-09-16 09:48:01.028Z #cf5.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@1c61eda5{/,null,STOPPED} -09:48:01.036 sqs-worker-languagedetection> [2024-09-16 09:48:01.035Z #cf5.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@2d5a1588{/,null,STOPPED} -09:48:01.039 sqs-worker-languagedetection> [2024-09-16 09:48:01.038Z #cf5.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stop requested, allowing in-progress tasks to complete. -09:48:01.040 sqs-worker-languagedetection> [2024-09-16 09:48:01.040Z #cf5.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stopped. -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "sqs-worker-languagedetection": Stop and removed container 8fa63a9a1b91 after 0 ms -09:48:02.416 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.415Z #1d3.033 INFO - - ] o.eclipse.jetty.server.Server: Stopped Server@4c1bdcc2{STOPPING}[11.0.23,sto=30000] -09:48:02.416 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.416Z #1d3.033 INFO - - ] o.eclipse.jetty.server.Server: Shutdown Server@4c1bdcc2{STOPPING}[11.0.23,sto=30000] -09:48:02.419 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.419Z #1d3.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped application@42ea287{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -09:48:02.420 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.420Z #1d3.033 INFO - - ] o.e.j.server.AbstractConnector: Stopped admin@78cd163b{HTTP/1.1, (http/1.1)}{0.0.0.0:8081} -09:48:02.421 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.421Z #1d3.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@718fd7c1{/,null,STOPPED} -09:48:02.428 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.427Z #1d3.033 INFO - - ] o.e.j.s.handler.ContextHandler: Stopped i.d.j.MutableServletContextHandler@23468512{/,null,STOPPED} -09:48:02.430 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.430Z #1d3.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stop requested, allowing in-progress tasks to complete. -09:48:02.445 rabbitmq> 2024-09-16 09:48:02.444713+00:00 [info] <0.845.0> closing AMQP connection <0.845.0> (172.17.0.6:59904 -> 172.17.0.3:5672, vhost: '/', user: 'guest') -09:48:02.445 rabbitmq-worker-languagedetection> [2024-09-16 09:48:02.445Z #1d3.033 INFO - - ] c.h.c.w.core.WorkerApplication: Worker stopped. -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT] "rabbitmq-worker-languagedetection": Stop and removed container 96f45f185ef1 after 0 ms -[INFO] DOCKER> [dev/cafdataprocessing/worker-languagedetection:5.2.0-SNAPSHOT]: Stop and removed container 2b02c23345bb after 0 ms -[INFO] DOCKER> [worker-languagedetection-container-test-config:5.2.0-SNAPSHOT] "config": Stop and removed container 13409db2e42c after 0 ms -09:48:04.056 sqs> Localstack runtime received signal 15 -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest] "sqs": Stop and removed container 90f5d0fe33e1 after 0 ms -09:48:10.140 rabbitmq> 2024-09-16 09:48:10.140454+00:00 [notice] <0.64.0> SIGTERM received - shutting down -09:48:10.140 rabbitmq> 2024-09-16 09:48:10.140454+00:00 [notice] <0.64.0> -09:48:10.142 rabbitmq> 2024-09-16 09:48:10.141736+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_prometheus_tls -09:48:10.146 rabbitmq> 2024-09-16 09:48:10.146030+00:00 [warning] <0.702.0> HTTP listener registry could not find context rabbitmq_management_tls -09:48:10.154 rabbitmq> 2024-09-16 09:48:10.153973+00:00 [info] <0.838.0> stopped TCP listener on [::]:5672 -09:48:10.155 rabbitmq> 2024-09-16 09:48:10.155203+00:00 [info] <0.630.0> Virtual host '/' is stopping -09:48:10.155 rabbitmq> 2024-09-16 09:48:10.155317+00:00 [info] <0.981.0> Closing all connections in vhost '/' on node 'rabbit@e01077a63a2a' because the vhost is stopping -09:48:10.155 rabbitmq> 2024-09-16 09:48:10.155344+00:00 [info] <0.643.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' -09:48:10.164 rabbitmq> 2024-09-16 09:48:10.164095+00:00 [info] <0.643.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' is stopped -09:48:10.164 rabbitmq> 2024-09-16 09:48:10.164290+00:00 [info] <0.639.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' -09:48:10.173 rabbitmq> 2024-09-16 09:48:10.173545+00:00 [info] <0.639.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@e01077a63a2a/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' is stopped -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest] "rabbitmq": Stop and removed container e01077a63a2a after 0 ms -09:48:12.521 webdav> ++ _term -09:48:12.521 webdav> ++ echo 'Caught SIGTERM signal!' -09:48:12.521 webdav> ++ kill -TERM '' -09:48:12.521 webdav> Caught SIGTERM signal! -[INFO] DOCKER> [worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest] "webdav": Stop and removed container b5296a810364 after 0 ms -[INFO] -[INFO] --- license:4.3:check (check-license-headers) @ worker-languagedetection-container --- -[INFO] Checking licenses... -[INFO] -[INFO] --- dependency:3.6.0:analyze-only (check-dependencies) @ worker-languagedetection-container --- -[INFO] Skipping pom project -[INFO] -[INFO] --- duplicate-finder:2.0.1:check (deepcheck-dependencies) @ worker-languagedetection-container --- -[INFO] Ignoring POM project! -[INFO] -[INFO] --- failsafe:3.1.2:verify (sqs-implementation-testing) @ worker-languagedetection-container --- -[INFO] -[INFO] --- failsafe:3.1.2:verify (rabbitmq-implementation-testing) @ worker-languagedetection-container --- -[INFO] -[INFO] --- failsafe:3.1.2:verify (verify) @ worker-languagedetection-container --- -[INFO] -[INFO] --- install:3.1.1:install (default-install) @ worker-languagedetection-container --- -[INFO] Skipping artifact installation -[INFO] -[INFO] --- docker-versions:1.0.0-29:depopulate-project-registry (default-cli) @ worker-languagedetection-container --- -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cafapi/oraclelinux-jre21:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/cloudesire/webdav:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/busybox:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/library/rabbitmq:latest... -[INFO] Untagging worker-languagedetection-5.2.0-SNAPSHOT.project-registries.local/localstack/localstack:latest... -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD SUCCESS -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 03:13 min -[INFO] Finished at: 2024-09-16T10:48:14+01:00 -[INFO] ------------------------------------------------------------------------ diff --git a/worker-languagedetection-container/pom.xml b/worker-languagedetection-container/pom.xml index c6330b1..acfdff2 100644 --- a/worker-languagedetection-container/pom.xml +++ b/worker-languagedetection-container/pom.xml @@ -148,7 +148,6 @@ sqs-implementation-testing integration-test - verify false @@ -170,7 +169,6 @@ rabbitmq-implementation-testing integration-test - verify false @@ -186,8 +184,6 @@ test/rabbitmq-worker-languagedetection - target/failsafe-reports/rabbitmq/failsafe-summary-rabbitmq.xml - target/failsafe-reports/rabbitmq @@ -198,7 +194,7 @@ target/failsafe-reports/sqs/failsafe-summary-sqs.xml - target/failsafe-reports/rabbitmq/failsafe-summary-rabbitmq.xml + target/failsafe-reports/failsafe-summary.xml @@ -500,12 +496,6 @@ - - - - - - diff --git a/worker-languagedetection-container/target/config-files/cfg~caf~worker~SQSConfiguration.js b/worker-languagedetection-container/target/config-files/cfg~caf~worker~SQSConfiguration.js deleted file mode 100644 index df10d15..0000000 --- a/worker-languagedetection-container/target/config-files/cfg~caf~worker~SQSConfiguration.js +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright 2015-2024 Open Text. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -({ - awsProtocol: getenv("CAF_AWS_PROTOCOL") || "http", - awsHost: getenv("CAF_AWS_HOST") || "localhost", - awsPort: getenv("CAF_AWS_PORT") || 4566, - awsRegion: getenv("CAF_AWS_REGION") || "us-east-1", - awsAccessKey: getenv("CAF_AWS_ACCESS_KEY") || "x", - awsSecretAccessKey: getenv("CAF_AWS_SECRET_ACCESS_KEY") || "x" -}); From 52cee14802f249e24fda50dd072d1079ff511012 Mon Sep 17 00:00:00 2001 From: David Milligan Date: Tue, 17 Sep 2024 08:32:49 +0100 Subject: [PATCH 13/21] Moved verify --- worker-languagedetection-container/pom.xml | 26 ++++++++++++---------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/worker-languagedetection-container/pom.xml b/worker-languagedetection-container/pom.xml index acfdff2..43ca70b 100644 --- a/worker-languagedetection-container/pom.xml +++ b/worker-languagedetection-container/pom.xml @@ -148,6 +148,7 @@ sqs-implementation-testing integration-test + verify false @@ -169,6 +170,7 @@ rabbitmq-implementation-testing integration-test + verify false @@ -186,18 +188,18 @@ - - verify - - verify - - - - target/failsafe-reports/sqs/failsafe-summary-sqs.xml - target/failsafe-reports/failsafe-summary.xml - - - + + + + + + + + + + + + From fcede5a99430cab141f1b419b94737e36f2e37b6 Mon Sep 17 00:00:00 2001 From: David Milligan Date: Tue, 17 Sep 2024 09:06:53 +0100 Subject: [PATCH 14/21] Added test container vars for jenkins --- worker-languagedetection-container/pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/worker-languagedetection-container/pom.xml b/worker-languagedetection-container/pom.xml index 43ca70b..bdfca81 100644 --- a/worker-languagedetection-container/pom.xml +++ b/worker-languagedetection-container/pom.xml @@ -330,6 +330,8 @@ warn + sqs.us-east-1.localhost.localstack.cloud + ${sqs.ctrl.port} Ready. From 9ce9e3b685838517c168b4771df33cd3dac8199f Mon Sep 17 00:00:00 2001 From: David Milligan Date: Tue, 17 Sep 2024 09:08:11 +0100 Subject: [PATCH 15/21] Added test container vars for jenkins --- worker-languagedetection-container/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker-languagedetection-container/pom.xml b/worker-languagedetection-container/pom.xml index bdfca81..d5263c7 100644 --- a/worker-languagedetection-container/pom.xml +++ b/worker-languagedetection-container/pom.xml @@ -330,7 +330,7 @@ warn - sqs.us-east-1.localhost.localstack.cloud + ${docker.host.address} ${sqs.ctrl.port} From e2555f282405633926fddc2522c6dbfff2271bfa Mon Sep 17 00:00:00 2001 From: David Milligan Date: Tue, 17 Sep 2024 09:25:55 +0100 Subject: [PATCH 16/21] update cfg for test framework --- worker-languagedetection-container/pom.xml | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/worker-languagedetection-container/pom.xml b/worker-languagedetection-container/pom.xml index d5263c7..4b7302c 100644 --- a/worker-languagedetection-container/pom.xml +++ b/worker-languagedetection-container/pom.xml @@ -156,7 +156,7 @@ true ${sqs.ctrl.port} - sqs.us-east-1.localhost.localstack.cloud + ${docker.host.address} sqs @@ -188,18 +188,6 @@ - - - - - - - - - - - - @@ -330,8 +318,6 @@ warn - ${docker.host.address} - ${sqs.ctrl.port} Ready. From 61c785ebe3a13192585e69cb94083fa66278d8fb Mon Sep 17 00:00:00 2001 From: David Milligan Date: Tue, 17 Sep 2024 10:00:53 +0100 Subject: [PATCH 17/21] merging test reports --- worker-languagedetection-container/pom.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/worker-languagedetection-container/pom.xml b/worker-languagedetection-container/pom.xml index 4b7302c..b300778 100644 --- a/worker-languagedetection-container/pom.xml +++ b/worker-languagedetection-container/pom.xml @@ -162,8 +162,8 @@ test/sqs-worker-languagedetection - target/failsafe-reports/sqs/failsafe-summary-sqs.xml - target/failsafe-reports/sqs + target/failsafe-reports + sqs @@ -186,6 +186,8 @@ test/rabbitmq-worker-languagedetection + target/failsafe-reports + rabbitmq From d0c7146e1dbab326a6aeb4fb8c0fea843d4c094b Mon Sep 17 00:00:00 2001 From: David Milligan Date: Tue, 17 Sep 2024 10:34:28 +0100 Subject: [PATCH 18/21] removed sqs hostname cfg --- worker-languagedetection-container/pom.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/worker-languagedetection-container/pom.xml b/worker-languagedetection-container/pom.xml index b300778..602138e 100644 --- a/worker-languagedetection-container/pom.xml +++ b/worker-languagedetection-container/pom.xml @@ -156,7 +156,6 @@ true ${sqs.ctrl.port} - ${docker.host.address} sqs From d0956ddd190a19875aaaa8b6a8f2c02914a2103a Mon Sep 17 00:00:00 2001 From: David Milligan Date: Tue, 17 Sep 2024 11:18:14 +0100 Subject: [PATCH 19/21] removed redundant sys vars in pom --- worker-languagedetection-container/pom.xml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/worker-languagedetection-container/pom.xml b/worker-languagedetection-container/pom.xml index 602138e..68ef169 100644 --- a/worker-languagedetection-container/pom.xml +++ b/worker-languagedetection-container/pom.xml @@ -154,14 +154,12 @@ false - true ${sqs.ctrl.port} sqs test/sqs-worker-languagedetection - target/failsafe-reports sqs @@ -175,7 +173,6 @@ false - true ${worker.restport} ${worker.adminport} ${rabbitmq.node.port} @@ -185,7 +182,6 @@ test/rabbitmq-worker-languagedetection - target/failsafe-reports rabbitmq @@ -196,6 +192,7 @@ ${test.data} ${test.data} false + true ${test.configs} From 69aade719da235433f36de3cae3a763a132e91cc Mon Sep 17 00:00:00 2001 From: David Milligan Date: Tue, 17 Sep 2024 15:18:18 +0100 Subject: [PATCH 20/21] Added publisher wait timeout --- worker-languagedetection-container/pom.xml | 1 + ...st~sqs-worker-languagedetection~SQSWorkerQueueConfiguration | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/worker-languagedetection-container/pom.xml b/worker-languagedetection-container/pom.xml index 68ef169..f5272de 100644 --- a/worker-languagedetection-container/pom.xml +++ b/worker-languagedetection-container/pom.xml @@ -456,6 +456,7 @@ test/sqs-worker-languagedetection /config sqs + 0 diff --git a/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~SQSWorkerQueueConfiguration b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~SQSWorkerQueueConfiguration index bd743fb..522e52a 100644 --- a/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~SQSWorkerQueueConfiguration +++ b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~SQSWorkerQueueConfiguration @@ -8,5 +8,6 @@ "visibilityTimeout": 300, "messageRetentionPeriod": 1000, "maxDeliveries": 1000, - "maxInflightMessages": 120000 + "maxInflightMessages": 120000, + "publisherWaitTimeout": 0 } From 4166f7b3710a6bd10305ec3a3eb585877bd62c4e Mon Sep 17 00:00:00 2001 From: David Milligan Date: Wed, 18 Sep 2024 10:44:05 +0100 Subject: [PATCH 21/21] Updated test-config --- ...est~sqs-worker-languagedetection~SQSConfiguration | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~SQSConfiguration b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~SQSConfiguration index f277bf8..4447ecc 100644 --- a/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~SQSConfiguration +++ b/worker-languagedetection-container/test-configs/cfg~test~sqs-worker-languagedetection~SQSConfiguration @@ -1,8 +1,8 @@ { - "awsProtocol": "http", - "awsHost": "sqs", - "awsPort": 4566, - "awsRegion": "us-east-1", - "awsAccessKey": "x", - "awsSecretAccessKey": "x" + "sqsProtocol": "http", + "sqsHost": "sqs", + "sqsPort": 4566, + "sqsRegion": "us-east-1", + "sqsAccessKey": "x", + "sqsSecretAccessKey": "x" }