Create config file EXPORT KUBECONFIG to /app/.kube/config Execute tests [2025-04-21 07:15:21 +0000] - Value of --debug: off [2025-04-21 07:15:21 +0000] - Value of --image-namespace: rhmessagingqe [2025-04-21 07:15:21 +0000] - Value of --image-tag: amq-broker-lpt [2025-04-21 07:15:21 +0000] - Value of --make-target: operator_test_smoke operator_copy_test_results [2025-04-21 07:15:21 +0000] - Value of --namespace: claire [2025-04-21 07:15:21 +0000] - Value of --make-envvar: OLM=true [2025-04-21 07:15:21 +0000] - Value of --kubeconfig: [2025-04-21 07:15:21 +0000] - Value of --test-completion-wait-check: 60 [2025-04-21 07:15:21 +0000] - amq-broker image tag detected, using file Makefile.downstream as makefile fatal: not a git repository (or any of the parent directories): .git [2025-04-21 07:15:21 +0000] - Using operator-suite/container/scripts/run-test.sh from git commit id: fail to get commit id. It was not found or not in a git repo [2025-04-21 07:15:21 +0000] - Creating Namespace claire apiVersion: v1 kind: Namespace metadata: name: claire namespace/claire created [2025-04-21 07:15:26 +0000] - Creating secret for kubeconfig from /app/.kube/config secret/claire-kubeconfig created [2025-04-21 07:15:31 +0000] - Creating config map for run script --- apiVersion: v1 kind: ConfigMap metadata: name: run-script namespace: claire data: run.sh: |- #!/usr/bin/env bash TEST_RESULTS_DIR="/app/test-results" OPERATOR_TEST_RESULTS_DIR="${TEST_RESULTS_DIR}/operator-suite" LOG_FILE="${TEST_RESULTS_DIR}/tests.execution.log" function log() { if [[ "$1" == "" ]]; then echo "$1" | tee -a "${LOG_FILE}" else echo "[$(date "+%Y-%m-%d %H:%M:%S %z")] - $1" | tee -a "${LOG_FILE}" fi } log "Starting..." sleep 15 log "" log "Running with git commit id: ${COMMIT_ID}" log "Running with image: ${CONTAINER_IMAGE}" log "Running with image id: $(kubectl -n claire get pod claire-test-suite -o jsonpath='{.status.containerStatuses[*].imageID}')" log "" log "Running with container env variables:" kubectl -n claire get pod claire-test-suite -o jsonpath='{.spec.containers[*].env}' log "" log "" log "All container environment variables:" env log "" log "Creating test-results directory: ${OPERATOR_TEST_RESULTS_DIR}" mkdir -p "${OPERATOR_TEST_RESULTS_DIR}" log "" log "Starting Claire execution at $(date)" | tee "${TEST_RESULTS_DIR}/tests.execution.started" log "" log "Executing make with params: -f Makefile.downstream operator_test_smoke operator_copy_test_results" log "" make -f Makefile.downstream operator_test_smoke operator_copy_test_results | tee -a "${LOG_FILE}" log "" log "Finished Claire execution $(date)" | tee "${TEST_RESULTS_DIR}/tests.execution.completed" log "" log "sleeping forever" log "" sleep 99d configmap/run-script created [2025-04-21 07:15:36 +0000] - Creating test suite pod --- apiVersion: v1 kind: Pod metadata: name: claire-test-suite namespace: claire spec: restartPolicy: Never securityContext: runAsNonRoot: true seccompProfile: type: RuntimeDefault containers: - name: claire-test-suite image: quay.io/rhmessagingqe/claire:amq-broker-lpt imagePullPolicy: Always command: ["/app/run.sh"] env: - name: CONTAINER_IMAGE value: quay.io/rhmessagingqe/claire:amq-broker-lpt - name: OLM value: "true" - name: MVN_TEST_ADDITIONAL_ARGS value: -Dfailsafe.rerunFailingTestsCount=2 - name: TEST_LOG_LEVEL value: DEBUG - name: MVN_ADDITIONAL_PARAMS value: '"--offline"' - name: OLM_USE_DEFAULT_CHANNEL value: "true" volumeMounts: - name: run-script-volume mountPath: /app/run.sh readOnly: true subPath: run.sh - name: claire-kubeconfig-secret mountPath: /app/.kube readOnly: true - mountPath: "/app/test-results" name: claire-storage securityContext: privileged: false allowPrivilegeEscalation: false capabilities: drop: ["ALL"] volumes: - name: run-script-volume configMap: defaultMode: 0750 name: run-script - name: claire-kubeconfig-secret secret: secretName: claire-kubeconfig - name: claire-storage emptyDir: {} pod/claire-test-suite created [2025-04-21 07:15:41 +0000] - Waiting claire-test-suite pod reach Running state pod/claire-test-suite condition met [2025-04-21 07:15:46 +0000] - Waiting execution to finish [2025-04-21 07:15:46 +0000] - Execution not completed. Waiting for 60 seconds before check again [2025-04-21 07:16:47 +0000] - Execution not completed. Waiting for 60 seconds before check again [2025-04-21 07:17:47 +0000] - Execution not completed. Waiting for 60 seconds before check again [2025-04-21 07:18:47 +0000] - Execution not completed. Waiting for 60 seconds before check again [2025-04-21 07:19:47 +0000] - Execution not completed. Waiting for 60 seconds before check again [2025-04-21 07:20:47 +0000] - Execution not completed. Waiting for 60 seconds before check again [2025-04-21 07:21:47 +0000] - Copying test results, logs and additional files to /app/test-results tar: Removing leading `/' from member names tar: Removing leading `/' from hard link targets [2025-04-21 07:21:48 +0000] - Displaying logs [2025-04-21 07:16:01 +0000] - Starting Claire execution at Mon Apr 21 07:16:01 AM UTC 2025 [2025-04-21 07:15:46 +0000] - Starting... [2025-04-21 07:16:01 +0000] - Running with git commit id: 28b07eb632a87c039771733ccb9a2a1bac945773 [2025-04-21 07:16:01 +0000] - Running with image: quay.io/rhmessagingqe/claire:amq-broker-lpt [2025-04-21 07:16:01 +0000] - Running with image id: quay.io/rhmessagingqe/claire@sha256:cd7ed9d0d03e1f4ac8bb43015656de9ac8fc1971032e2e3b12808787a430a86d [2025-04-21 07:16:01 +0000] - Running with container env variables: [2025-04-21 07:16:01 +0000] - All container environment variables: [2025-04-21 07:16:01 +0000] - Creating test-results directory: /app/test-results/operator-suite [2025-04-21 07:16:01 +0000] - Starting Claire execution at Mon Apr 21 07:16:01 AM UTC 2025 [2025-04-21 07:16:01 +0000] - Executing make with params: -f Makefile.downstream operator_test_smoke operator_copy_test_results echo "MAVEN_OPTS: -Daether.connector.https.securityMode=insecure -Dmaven.repo.local=/app/.m2/repository" ; echo "MAVEN_ARGS: " ; mvn --no-transfer-progress --batch-mode --update-snapshots -s /app/settings.xml "--offline" failsafe:integration-test --projects :operator-suite -Dgroups="smoke" MAVEN_OPTS: -Daether.connector.https.securityMode=insecure -Dmaven.repo.local=/app/.m2/repository MAVEN_ARGS: [INFO] Scanning for projects... [INFO] [INFO] ---------------------< io.brokerqe:operator-suite >--------------------- [INFO] Building operator-suite 0.1-SNAPSHOT [INFO] from pom.xml [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- failsafe:3.2.5:integration-test (default-cli) @ operator-suite --- [INFO] Using auto detected provider org.apache.maven.surefire.junitplatform.JUnitPlatformProvider [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- 2025-04-21T07:16:04.473Z INFO [][ClaireExecutionListener:80] [TestPlan] Will execute following 6 tests: ClusteredOperatorSmokeTests.simpleBrokerClusteredDeploymentTest() SmokeTests.sendReceiveCoreMessageTest(),SmokeTests.testDefaultOperatorVersion(),SmokeTests.sendReceiveSystemTestsClientMessageTest(),SmokeTests.testDefaultBrokerVersion(),SmokeTests.testConsoleProvidedVersion() 2025-04-21T07:16:05.840Z INFO [][KubeClient:116] [default] Created KubernetesClient for OPENSHIFT: 1.32 - https://api.ci-op-6hiw7436-cfa79.cspilp.interop.ccitredhat.com:6443/ 2025-04-21T07:16:05.898Z INFO [][Environment:82] [ENV] Found mapping of provided {operator={candidate=7.12.3.OPR.1.CR1, released=7.12.3.OPR.1.CR1}, standalone={candidate=7.12.3.CR1, released=null}, upstream=2.33.0, upstream_operator=main} into 7.12.3 2025-04-21T07:16:05.900Z INFO [][Environment:169] List of all used Claire related variables: KUBE_CONTEXT=default DISABLE_RANDOM_NAMESPACES=false CLUSTER_OPERATOR_MANAGED=true COLLECT_TEST_DATA=true DUMP_ENABLED=false TEARDOWN_ENV=true TEST_LOG_LEVEL=DEBUG ARTEMIS_VERSION=7.12.3 ARTEMIS_TEST_VERSION=VERSION_2_33 OLM_INSTALLATION=true OLM=true LOGS_LOCATION=/app/operator-suite/test-logs/2025-04-21_07-16-04 TMP_LOCATION=/app/operator-suite/test-tmp/2025-04-21_07-16-04 2025-04-21T07:16:05.900Z INFO [][ClaireExecutionListener:89] All logging changed to level: DEBUG 2025-04-21T07:16:05.902Z DEBUG [][OperatorExecutionListener:33] Setup environment finished [INFO] Running io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests 2025-04-21T07:16:05.959Z INFO [][TestSeparator:29] ---------------------------------------------------------------------------- 2025-04-21T07:16:05.959Z INFO [][TestSeparator:30] Started Class: io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests 2025-04-21T07:16:05.993Z INFO [][KubeClient:158] Creating new namespace cluster-tests-14a 2025-04-21T07:16:06.028Z DEBUG [default][TestUtils:196] [WAIT] Creating namespace 2025-04-21T07:16:06.074Z INFO [default][KubeClient:158] Creating new namespace cluster-tests-14aa 2025-04-21T07:16:06.085Z DEBUG [default][TestUtils:196] [WAIT] Creating namespace 2025-04-21T07:16:06.124Z INFO [default][KubeClient:158] Creating new namespace cluster-tests-14ab 2025-04-21T07:16:06.131Z DEBUG [default][TestUtils:196] [WAIT] Creating namespace 2025-04-21T07:16:06.157Z INFO [default][ClusteredOperatorSmokeTests:40] [cluster-tests-14a] Creating new namespaces cluster-tests-14a cluster-tests-14aa cluster-tests-14ab 2025-04-21T07:16:06.158Z INFO [default][ResourceManager:152] Deploying Artemis CO 2025-04-21T07:16:06.158Z DEBUG [default][KubeClient:149] Using namespace: cluster-tests-14a 2025-04-21T07:16:06.210Z INFO [default][ArtemisCloudClusterOperatorOlm:97] [cluster-tests-14a] Going to install amq-broker-operator.v7.12.4-opr-1 from channel: 7.12.x 2025-04-21T07:16:06.211Z INFO [default][ArtemisCloudClusterOperatorOlm:186] [OLM] Deploying Artemis Cluster Operator in namespace cluster-tests-14a 2025-04-21T07:16:06.228Z INFO [default][KubeClient:547] [OLM][cluster-tests-14a] Creating OperatorGroup 2025-04-21T07:16:06.229Z DEBUG [default][KubeClient:548] [OLM][cluster-tests-14a] apiVersion: operators.coreos.com/v1 kind: OperatorGroup metadata: name: amq-broker-rhel8-3f namespace: cluster-tests-14a spec: targetNamespaces: - cluster-tests-14a - cluster-tests-14aa 2025-04-21T07:16:06.249Z INFO [default][ArtemisCloudClusterOperatorOlm:147] [OLM] Creating OperatorGroup 2025-04-21T07:16:06.249Z INFO [default][ArtemisCloudClusterOperatorOlm:135] [OLM] Creating Subscription 2025-04-21T07:16:06.249Z DEBUG [default][ArtemisCloudClusterOperatorOlm:152] [cluster-tests-14a] [OLM] apiVersion: operators.coreos.com/v1alpha1 kind: Subscription metadata: name: amq-broker-rhel8-3f namespace: cluster-tests-14a spec: channel: 7.12.x installPlanApproval: Automatic name: amq-broker-rhel8 source: redhat-operators sourceNamespace: openshift-marketplace 2025-04-21T07:16:06.319Z WARN [default][VersionUsageUtils:60] The client is using resource type 'subscriptions' with unstable version 'v1alpha1' 2025-04-21T07:16:06.328Z DEBUG [default][TestUtils:196] [WAIT] subscription to be active 2025-04-21T07:16:06.340Z DEBUG [default][TestUtils:196] [WAIT] broker-operator ClusterServiceVersion to be 'Succeeded' 2025-04-21T07:16:06.341Z WARN [default][VersionUsageUtils:60] The client is using resource type 'clusterserviceversions' with unstable version 'v1alpha1' 2025-04-21T07:16:26.462Z DEBUG [default][ArtemisCloudClusterOperatorOlm:171] [cluster-tests-14a] Checking for status phase of amq-broker-operator.v7.12.4-opr-1 2025-04-21T07:16:26.462Z DEBUG [default][TestUtils:196] [WAIT] deployment to be active 2025-04-21T07:16:46.963Z INFO [default][ArtemisCloudClusterOperatorOlm:176] [cluster-tests-14a] [OLM] Subscription & installplans successfully installed 2025-04-21T07:16:46.963Z INFO [default][ArtemisCloudClusterOperatorOlm:188] [cluster-tests-14a] [OLM] Cluster operator amq-broker-controller-manager successfully deployed! 2025-04-21T07:16:46.969Z INFO [default][TestSeparator:35] ---------------------------------------------------------------------------- 2025-04-21T07:16:46.970Z INFO [default][TestSeparator:36] [1/6] Started: io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests.simpleBrokerClusteredDeploymentTest 2025-04-21T07:16:46.972Z INFO [default][ClusteredOperatorSmokeTests:62] [cluster-tests-14a] Expecting PASS: Deploy broker in namespace cluster-tests-14aa 2025-04-21T07:16:47.164Z WARN [default][VersionUsageUtils:60] The client is using resource type 'activemqartemises' with unstable version 'v1beta1' 2025-04-21T07:16:47.232Z INFO [default][ResourceManager:272] [cluster-tests-14a] Created ActiveMQArtemis ActiveMQArtemis() 2025-04-21T07:16:47.233Z INFO [default][ResourceManager:543] [cluster-tests-14a] Waiting 60s for creation of broker artemis-broker 2025-04-21T07:16:47.235Z DEBUG [default][TestUtils:196] [WAIT] StatefulSet to be ready 2025-04-21T07:17:17.304Z DEBUG [default][ResourceManager:581] [cluster-tests-14a] Waiting for expected broker pods count: 1 2025-04-21T07:17:17.306Z DEBUG [default][TestUtils:196] [WAIT] all broker pods to start 2025-04-21T07:17:17.333Z INFO [default][ClusteredOperatorSmokeTests:65] [cluster-tests-14a] Check if broker pod with name artemis-broker is present. 2025-04-21T07:17:17.360Z INFO [default][ResourceManager:595] [cluster-tests-14a] Waiting 60s for deletion of broker artemis-broker 2025-04-21T07:17:17.360Z DEBUG [default][TestUtils:196] [WAIT] ActiveMQArtemis statefulSet & related pods to be removed 2025-04-21T07:17:22.381Z INFO [default][ResourceManager:330] [cluster-tests-14a] Deleted ActiveMQArtemis artemis-broker 2025-04-21T07:17:22.388Z INFO [default][ClusteredOperatorSmokeTests:74] [cluster-tests-14a] Expecting PASS: Deploy broker in namespace cluster-tests-14aa 2025-04-21T07:17:22.429Z INFO [default][ResourceManager:272] [cluster-tests-14aa] Created ActiveMQArtemis ActiveMQArtemis() 2025-04-21T07:17:22.430Z INFO [default][ResourceManager:543] [cluster-tests-14aa] Waiting 60s for creation of broker artemis-broker 2025-04-21T07:17:22.430Z DEBUG [default][TestUtils:196] [WAIT] StatefulSet to be ready 2025-04-21T07:17:42.464Z DEBUG [default][ResourceManager:581] [cluster-tests-14aa] Waiting for expected broker pods count: 1 2025-04-21T07:17:42.465Z DEBUG [default][TestUtils:196] [WAIT] all broker pods to start 2025-04-21T07:17:42.482Z INFO [default][ClusteredOperatorSmokeTests:77] [cluster-tests-14aa] Check if broker pod with name artemis-broker is present. 2025-04-21T07:17:42.498Z INFO [default][ResourceManager:595] [cluster-tests-14aa] Waiting 60s for deletion of broker artemis-broker 2025-04-21T07:17:42.498Z DEBUG [default][TestUtils:196] [WAIT] ActiveMQArtemis statefulSet & related pods to be removed 2025-04-21T07:17:47.519Z INFO [default][ResourceManager:330] [cluster-tests-14aa] Deleted ActiveMQArtemis artemis-broker 2025-04-21T07:17:47.524Z INFO [default][ClusteredOperatorSmokeTests:85] [cluster-tests-14a] Expecting FAIL: deploy broker in namespace cluster-tests-14ab 2025-04-21T07:17:47.569Z INFO [default][ResourceManager:272] [cluster-tests-14ab] Created ActiveMQArtemis ActiveMQArtemis() 2025-04-21T07:17:47.572Z INFO [default][ResourceManager:543] [cluster-tests-14ab] Waiting 30s for creation of broker artemis-broker 2025-04-21T07:17:47.573Z DEBUG [default][TestUtils:196] [WAIT] StatefulSet to be ready 2025-04-21T07:18:17.598Z INFO [default][ResourceManager:595] [cluster-tests-14ab] Waiting 60s for deletion of broker artemis-broker 2025-04-21T07:18:17.598Z DEBUG [default][TestUtils:196] [WAIT] ActiveMQArtemis statefulSet & related pods to be removed 2025-04-21T07:18:17.611Z INFO [default][ResourceManager:330] [cluster-tests-14ab] Deleted ActiveMQArtemis artemis-broker 2025-04-21T07:18:17.614Z INFO [default][TestSeparator:44] Finished: io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests.simpleBrokerClusteredDeploymentTest 2025-04-21T07:18:17.615Z INFO [default][TestSeparator:45] ---------------------------------------------------------------------------- 2025-04-21T07:18:17.623Z DEBUG [default][ArtemisCloudClusterOperatorOlm:193] [cluster-tests-14a] Going to undeploy [amq-broker-rhel8-3f, amq-broker-rhel8-3f] 2025-04-21T07:18:17.650Z INFO [default][ArtemisCloudClusterOperatorOlm:195] [cluster-tests-14a] [OLM] Successfully undeployed ArtemisCloudOperator 2025-04-21T07:18:17.650Z INFO [default][KubeClient:169] Deleting namespace cluster-tests-14a 2025-04-21T07:18:17.665Z DEBUG [default][TestUtils:196] [WAIT] Deletion of namespace 2025-04-21T07:18:31.752Z INFO [default][KubeClient:169] Deleting namespace cluster-tests-14aa 2025-04-21T07:18:31.761Z DEBUG [default][TestUtils:196] [WAIT] Deletion of namespace 2025-04-21T07:18:37.791Z INFO [default][KubeClient:169] Deleting namespace cluster-tests-14ab 2025-04-21T07:18:37.799Z DEBUG [default][TestUtils:196] [WAIT] Deletion of namespace 2025-04-21T07:18:43.918Z INFO [default][TestSeparator:51] Finished Class: io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests 2025-04-21T07:18:43.918Z INFO [default][TestSeparator:52] ---------------------------------------------------------------------------- [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 158.0 s -- in io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests [INFO] Running io.brokerqe.claire.smoke.SmokeTests 2025-04-21T07:18:43.928Z INFO [default][TestSeparator:29] ---------------------------------------------------------------------------- 2025-04-21T07:18:43.929Z INFO [default][TestSeparator:30] Started Class: io.brokerqe.claire.smoke.SmokeTests 2025-04-21T07:18:43.929Z INFO [default][KubeClient:158] Creating new namespace smoke-tests-7a8 2025-04-21T07:18:43.941Z DEBUG [default][TestUtils:196] [WAIT] Creating namespace 2025-04-21T07:18:43.956Z INFO [default][ResourceManager:152] Deploying Artemis CO 2025-04-21T07:18:43.956Z DEBUG [default][KubeClient:149] Using namespace: smoke-tests-7a8 2025-04-21T07:18:43.986Z INFO [default][ArtemisCloudClusterOperatorOlm:97] [smoke-tests-7a8] Going to install amq-broker-operator.v7.12.4-opr-1 from channel: 7.12.x 2025-04-21T07:18:43.986Z INFO [default][ArtemisCloudClusterOperatorOlm:186] [OLM] Deploying Artemis Cluster Operator in namespace smoke-tests-7a8 2025-04-21T07:18:43.994Z INFO [default][KubeClient:547] [OLM][smoke-tests-7a8] Creating OperatorGroup 2025-04-21T07:18:43.994Z DEBUG [default][KubeClient:548] [OLM][smoke-tests-7a8] apiVersion: operators.coreos.com/v1 kind: OperatorGroup metadata: name: amq-broker-rhel8-ec namespace: smoke-tests-7a8 spec: targetNamespaces: - smoke-tests-7a8 2025-04-21T07:18:44.006Z INFO [default][ArtemisCloudClusterOperatorOlm:147] [OLM] Creating OperatorGroup 2025-04-21T07:18:44.006Z INFO [default][ArtemisCloudClusterOperatorOlm:135] [OLM] Creating Subscription 2025-04-21T07:18:44.006Z DEBUG [default][ArtemisCloudClusterOperatorOlm:152] [smoke-tests-7a8] [OLM] apiVersion: operators.coreos.com/v1alpha1 kind: Subscription metadata: name: amq-broker-rhel8-ec namespace: smoke-tests-7a8 spec: channel: 7.12.x installPlanApproval: Automatic name: amq-broker-rhel8 source: redhat-operators sourceNamespace: openshift-marketplace 2025-04-21T07:18:44.014Z DEBUG [default][TestUtils:196] [WAIT] subscription to be active 2025-04-21T07:18:44.026Z DEBUG [default][TestUtils:196] [WAIT] broker-operator ClusterServiceVersion to be 'Succeeded' 2025-04-21T07:18:49.142Z DEBUG [default][ArtemisCloudClusterOperatorOlm:171] [smoke-tests-7a8] Checking for status phase of amq-broker-operator.v7.12.4-opr-1 2025-04-21T07:18:49.142Z DEBUG [default][TestUtils:196] [WAIT] deployment to be active 2025-04-21T07:18:59.316Z INFO [default][ArtemisCloudClusterOperatorOlm:176] [smoke-tests-7a8] [OLM] Subscription & installplans successfully installed 2025-04-21T07:18:59.317Z INFO [default][ArtemisCloudClusterOperatorOlm:188] [smoke-tests-7a8] [OLM] Cluster operator amq-broker-controller-manager successfully deployed! 2025-04-21T07:18:59.318Z INFO [default][TestSeparator:35] ---------------------------------------------------------------------------- 2025-04-21T07:18:59.319Z INFO [default][TestSeparator:36] [2/6] Started: io.brokerqe.claire.smoke.SmokeTests.sendReceiveCoreMessageTest 2025-04-21T07:18:59.351Z INFO [default][ResourceManager:272] [smoke-tests-7a8] Created ActiveMQArtemis ActiveMQArtemis() 2025-04-21T07:18:59.352Z INFO [default][ResourceManager:543] [smoke-tests-7a8] Waiting 60s for creation of broker artemis-broker 2025-04-21T07:18:59.352Z DEBUG [default][TestUtils:196] [WAIT] StatefulSet to be ready 2025-04-21T07:19:19.386Z DEBUG [default][ResourceManager:581] [smoke-tests-7a8] Waiting for expected broker pods count: 1 2025-04-21T07:19:19.387Z DEBUG [default][TestUtils:196] [WAIT] all broker pods to start 2025-04-21T07:19:19.409Z WARN [default][VersionUsageUtils:60] The client is using resource type 'activemqartemisaddresses' with unstable version 'v1beta1' 2025-04-21T07:19:24.416Z INFO [default][ResourceManager:359] [smoke-tests-7a8] Created ActiveMQArtemisAddress artemis-address-queue 2025-04-21T07:19:24.429Z INFO [default][ExecutorOperator:94] [smoke-tests-7a8] artemis-broker-ss-0 Running background command: [timeout 90s ./amq-broker/bin/artemis consumer --url tcp://10.131.0.27:61616 --protocol core --destination fqqn://myAddress0::myQueue0 --message-count 10] 2025-04-21T07:19:24.514Z DEBUG [default][ExecutorOperator:79] [smoke-tests-7a8] artemis-broker-ss-0 Running command: timeout 90s ./amq-broker/bin/artemis producer --url tcp://10.131.0.27:61616 --protocol core --destination fqqn://myAddress0::myQueue0 --message-count 10 2025-04-21T07:19:27.483Z DEBUG [default][BundledMessagingClient:147] [artemis-broker-ss-0] NOTE: Picked up JDK_JAVA_OPTIONS: -Dbroker.properties=/amq/extra/secrets/artemis-broker-props/broker.properties Connection brokerURL = tcp://10.131.0.27:61616 Producer ActiveMQQueue[myAddress0::myQueue0], thread=0 Started to calculate elapsed time ... Producer ActiveMQQueue[myAddress0::myQueue0], thread=0 Produced: 10 messages Producer ActiveMQQueue[myAddress0::myQueue0], thread=0 Elapsed time in second : 0 s Producer ActiveMQQueue[myAddress0::myQueue0], thread=0 Elapsed time in milli second : 84 milli seconds 2025-04-21T07:19:27.483Z DEBUG [default][ExecutorOperator:121] NOTE: Picked up JDK_JAVA_OPTIONS: -Dbroker.properties=/amq/extra/secrets/artemis-broker-props/broker.properties Connection brokerURL = tcp://10.131.0.27:61616 Consumer:: filter = null Consumer ActiveMQQueue[myAddress0::myQueue0], thread=0 wait until 10 messages are consumed Consumer ActiveMQQueue[myAddress0::myQueue0], thread=0 Consumed: 10 messages Consumer ActiveMQQueue[myAddress0::myQueue0], thread=0 Elapsed time in second : 0 s Consumer ActiveMQQueue[myAddress0::myQueue0], thread=0 Elapsed time in milli second : 84 milli seconds Consumer ActiveMQQueue[myAddress0::myQueue0], thread=0 Consumed: 10 messages Consumer ActiveMQQueue[myAddress0::myQueue0], thread=0 Consumer thread finished 2025-04-21T07:19:27.492Z INFO [default][ResourceManager:405] [smoke-tests-7a8] Deleted ActiveMQArtemisAddress artemis-address-queue 2025-04-21T07:19:27.502Z INFO [default][ResourceManager:595] [smoke-tests-7a8] Waiting 60s for deletion of broker artemis-broker 2025-04-21T07:19:27.502Z DEBUG [default][TestUtils:196] [WAIT] ActiveMQArtemis statefulSet & related pods to be removed 2025-04-21T07:19:32.522Z INFO [default][ResourceManager:330] [smoke-tests-7a8] Deleted ActiveMQArtemis artemis-broker 2025-04-21T07:19:32.523Z INFO [default][TestSeparator:44] Finished: io.brokerqe.claire.smoke.SmokeTests.sendReceiveCoreMessageTest 2025-04-21T07:19:32.523Z INFO [default][TestSeparator:45] ---------------------------------------------------------------------------- 2025-04-21T07:19:32.525Z INFO [default][TestSeparator:35] ---------------------------------------------------------------------------- 2025-04-21T07:19:32.525Z INFO [default][TestSeparator:36] [3/6] Started: io.brokerqe.claire.smoke.SmokeTests.testDefaultOperatorVersion 2025-04-21T07:19:32.538Z DEBUG [default][TestUtils:390] Parsed version: 7.12.4 from 7.12.4-opr-1. 2025-04-21T07:19:32.622Z INFO [default][SmokeTests:384] [smoke-tests-7a8] Check expected version 7.12.4 in amq-broker-controller-manager-66d68dc746-2gj8l pod logs 2025-04-21T07:19:32.650Z INFO [default][TestSeparator:44] Finished: io.brokerqe.claire.smoke.SmokeTests.testDefaultOperatorVersion 2025-04-21T07:19:32.651Z INFO [default][TestSeparator:45] ---------------------------------------------------------------------------- 2025-04-21T07:19:32.652Z INFO [default][TestSeparator:35] ---------------------------------------------------------------------------- 2025-04-21T07:19:32.652Z INFO [default][TestSeparator:36] [4/6] Started: io.brokerqe.claire.smoke.SmokeTests.sendReceiveSystemTestsClientMessageTest 2025-04-21T07:19:32.682Z DEBUG [default][StClientDeployment:108] [smoke-tests-7a8] Wait 30s for systemtest-clients deployment to be ready 2025-04-21T07:19:38.496Z INFO [default][ResourceManager:272] [smoke-tests-7a8] Created ActiveMQArtemis ActiveMQArtemis() 2025-04-21T07:19:38.496Z INFO [default][ResourceManager:543] [smoke-tests-7a8] Waiting 60s for creation of broker artemis-broker 2025-04-21T07:19:38.496Z DEBUG [default][TestUtils:196] [WAIT] StatefulSet to be ready 2025-04-21T07:19:58.526Z DEBUG [default][ResourceManager:581] [smoke-tests-7a8] Waiting for expected broker pods count: 1 2025-04-21T07:19:58.527Z DEBUG [default][TestUtils:196] [WAIT] all broker pods to start 2025-04-21T07:19:58.540Z INFO [default][AbstractSystemTests:228] [smoke-tests-7a8] Adding acceptors [amqp-owire-acceptor] to broker artemis-broker 2025-04-21T07:19:59.585Z INFO [default][KubeClient:327] [smoke-tests-7a8] Waiting 60s for pod artemis-broker reload 2025-04-21T07:19:59.586Z DEBUG [default][TestUtils:196] [WAIT] Pod to be reloaded and ready 2025-04-21T07:19:59.594Z DEBUG [default][KubeClient:331] [smoke-tests-7a8] OriginalPodUid caeb2b28-9ccb-4cce-9c57-20f896a93c19 vs currentPodUid caeb2b28-9ccb-4cce-9c57-20f896a93c19 2025-04-21T07:20:04.605Z DEBUG [default][KubeClient:331] [smoke-tests-7a8] OriginalPodUid caeb2b28-9ccb-4cce-9c57-20f896a93c19 vs currentPodUid e4893a7c-6923-4f87-b0c4-1be348e22edb 2025-04-21T07:20:20.623Z INFO [default][ResourceManager:359] [smoke-tests-7a8] Created ActiveMQArtemisAddress artemis-address-queue 2025-04-21T07:20:20.635Z INFO [default][SmokeTests:149] [smoke-tests-7a8] Starting AMQP publisher - receiver test 2025-04-21T07:20:20.637Z DEBUG [default][ExecutorOperator:79] [smoke-tests-7a8] systemtests-clients-756cb765bd-twbmw Running command: cli-qpid-sender --broker 10.131.0.30:5672 --address myAddress0::myQueue0 --log-msgs json --count 10 2025-04-21T07:20:22.439Z DEBUG [default][BaseJMSClient:96] [systemtests-clients-756cb765bd-twbmw][TX] {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021684,"group-sequence":0,"creation-time":1745220021684,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-1","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021725,"group-sequence":0,"creation-time":1745220021725,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-2","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021728,"group-sequence":0,"creation-time":1745220021728,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-3","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021732,"group-sequence":0,"creation-time":1745220021732,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-4","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021735,"group-sequence":0,"creation-time":1745220021735,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-5","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021738,"group-sequence":0,"creation-time":1745220021738,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-6","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021742,"group-sequence":0,"creation-time":1745220021742,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-7","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021745,"group-sequence":0,"creation-time":1745220021745,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-8","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021748,"group-sequence":0,"creation-time":1745220021748,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-9","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021752,"group-sequence":0,"creation-time":1745220021752,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-10","reply-to":null,"properties":{"JMSXDeliveryCount":1}} 2025-04-21T07:20:22.444Z DEBUG [default][ExecutorOperator:79] [smoke-tests-7a8] systemtests-clients-756cb765bd-twbmw Running command: cli-qpid-receiver --broker 10.131.0.30:5672 --address myAddress0::myQueue0 --log-msgs json --count 10 2025-04-21T07:20:24.287Z DEBUG [default][BaseJMSClient:119] [systemtests-clients-756cb765bd-twbmw][RX] {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021684,"group-sequence":0,"creation-time":1745220021684,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-1","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021725,"group-sequence":0,"creation-time":1745220021725,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-2","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021728,"group-sequence":0,"creation-time":1745220021728,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-3","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021732,"group-sequence":0,"creation-time":1745220021732,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-4","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021735,"group-sequence":0,"creation-time":1745220021735,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-5","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021738,"group-sequence":0,"creation-time":1745220021738,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-6","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021742,"group-sequence":0,"creation-time":1745220021742,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-7","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021745,"group-sequence":0,"creation-time":1745220021745,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-8","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021748,"group-sequence":0,"creation-time":1745220021748,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-9","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220021752,"group-sequence":0,"creation-time":1745220021752,"content-type":null,"id":"06d2d1f4-2125-410e-bfa2-e82294ff35a5:1:1:1-10","reply-to":null,"properties":{"JMSXDeliveryCount":1}} 2025-04-21T07:20:24.289Z DEBUG [default][MessagingClient:57] [systemtests-clients-756cb765bd-twbmw] All messages are same. Good. 2025-04-21T07:20:24.289Z INFO [default][SmokeTests:159] [smoke-tests-7a8] Starting Bundled AMQP subscriber - publisher test 2025-04-21T07:20:24.289Z INFO [default][ExecutorOperator:94] [smoke-tests-7a8] artemis-broker-ss-0 Running background command: [timeout 90s ./amq-broker/bin/artemis consumer --url tcp://10.131.0.30:5672 --protocol amqp --destination fqqn://myAddress0::myQueue0 --message-count 10] 2025-04-21T07:20:24.359Z DEBUG [default][ExecutorOperator:79] [smoke-tests-7a8] artemis-broker-ss-0 Running command: timeout 90s ./amq-broker/bin/artemis producer --url tcp://10.131.0.30:5672 --protocol amqp --destination fqqn://myAddress0::myQueue0 --message-count 10 2025-04-21T07:20:27.642Z DEBUG [default][BundledMessagingClient:147] [artemis-broker-ss-0] NOTE: Picked up JDK_JAVA_OPTIONS: -Dbroker.properties=/amq/extra/secrets/artemis-broker-props/broker.properties Connection brokerURL = tcp://10.131.0.30:5672 2025-04-21 07:20:26,838 WARN [org.apache.qpid.jms.provider.amqp.builders.AmqpResourceBuilder] Open of resource:(JmsConnectionInfo { ID:1861b2a2-8411-4c0e-b310-f778bb2e9bfa:1, configuredURI = amqp://10.131.0.30:5672, connectedURI = null }) failed: Open failed unexpectedly. 2025-04-21 07:20:26,876 INFO [org.apache.qpid.jms.JmsConnection] Connection ID:c499c4a1-9b92-465f-9fb1-f268a8d812c3:2 connected to server: amqp://10.131.0.30:5672 Producer myAddress0::myQueue0, thread=0 Started to calculate elapsed time ... Producer myAddress0::myQueue0, thread=0 Produced: 10 messages Producer myAddress0::myQueue0, thread=0 Elapsed time in second : 0 s Producer myAddress0::myQueue0, thread=0 Elapsed time in milli second : 65 milli seconds 2025-04-21T07:20:27.643Z DEBUG [default][ExecutorOperator:121] NOTE: Picked up JDK_JAVA_OPTIONS: -Dbroker.properties=/amq/extra/secrets/artemis-broker-props/broker.properties Connection brokerURL = tcp://10.131.0.30:5672 Consumer:: filter = null 2025-04-21 07:20:26,678 WARN [org.apache.qpid.jms.provider.amqp.builders.AmqpResourceBuilder] Open of resource:(JmsConnectionInfo { ID:0635eaae-4bca-49ea-8f93-63fd92d39d32:1, configuredURI = amqp://10.131.0.30:5672, connectedURI = null }) failed: Open failed unexpectedly. 2025-04-21 07:20:26,720 INFO [org.apache.qpid.jms.JmsConnection] Connection ID:f6620224-4c82-4cba-9e60-4a9812d3d762:2 connected to server: amqp://10.131.0.30:5672 Consumer myAddress0::myQueue0, thread=0 wait until 10 messages are consumed Consumer myAddress0::myQueue0, thread=0 Consumed: 10 messages Consumer myAddress0::myQueue0, thread=0 Elapsed time in second : 0 s Consumer myAddress0::myQueue0, thread=0 Elapsed time in milli second : 198 milli seconds Consumer myAddress0::myQueue0, thread=0 Consumed: 10 messages Consumer myAddress0::myQueue0, thread=0 Consumer thread finished 2025-04-21T07:20:27.643Z INFO [default][SmokeTests:162] [smoke-tests-7a8] Starting SystemTest clients AMQP subscriber - publisher test 2025-04-21T07:20:27.651Z INFO [default][ExecutorOperator:94] [smoke-tests-7a8] systemtests-clients-756cb765bd-twbmw Running background command: [cli-qpid-receiver --broker 10.131.0.30:5672 --address myAddress0::myQueue0 --log-msgs json --count 10 --timeout 60] 2025-04-21T07:20:27.721Z DEBUG [default][ExecutorOperator:79] [smoke-tests-7a8] systemtests-clients-756cb765bd-twbmw Running command: cli-qpid-sender --broker 10.131.0.30:5672 --address myAddress0::myQueue0 --log-msgs json --count 10 2025-04-21T07:20:29.902Z DEBUG [default][BaseJMSClient:96] [systemtests-clients-756cb765bd-twbmw][TX] {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029059,"group-sequence":0,"creation-time":1745220029059,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-1","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029090,"group-sequence":0,"creation-time":1745220029090,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-2","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029095,"group-sequence":0,"creation-time":1745220029095,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-3","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029103,"group-sequence":0,"creation-time":1745220029103,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-4","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029109,"group-sequence":0,"creation-time":1745220029109,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-5","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029116,"group-sequence":0,"creation-time":1745220029116,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-6","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029122,"group-sequence":0,"creation-time":1745220029122,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-7","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029125,"group-sequence":0,"creation-time":1745220029125,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-8","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029130,"group-sequence":0,"creation-time":1745220029130,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-9","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029136,"group-sequence":0,"creation-time":1745220029136,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-10","reply-to":null,"properties":{"JMSXDeliveryCount":1}} 2025-04-21T07:20:29.903Z DEBUG [default][ExecutorOperator:121] {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029059,"group-sequence":0,"creation-time":1745220029059,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-1","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029090,"group-sequence":0,"creation-time":1745220029090,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-2","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029095,"group-sequence":0,"creation-time":1745220029095,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-3","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029103,"group-sequence":0,"creation-time":1745220029103,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-4","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029109,"group-sequence":0,"creation-time":1745220029109,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-5","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029116,"group-sequence":0,"creation-time":1745220029116,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-6","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029122,"group-sequence":0,"creation-time":1745220029122,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-7","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029125,"group-sequence":0,"creation-time":1745220029125,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-8","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029130,"group-sequence":0,"creation-time":1745220029130,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-9","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029136,"group-sequence":0,"creation-time":1745220029136,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-10","reply-to":null,"properties":{"JMSXDeliveryCount":1}} 2025-04-21T07:20:29.904Z DEBUG [default][BaseJMSClient:182] [systemtests-clients-756cb765bd-twbmw][RX] {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029059,"group-sequence":0,"creation-time":1745220029059,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-1","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029090,"group-sequence":0,"creation-time":1745220029090,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-2","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029095,"group-sequence":0,"creation-time":1745220029095,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-3","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029103,"group-sequence":0,"creation-time":1745220029103,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-4","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029109,"group-sequence":0,"creation-time":1745220029109,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-5","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029116,"group-sequence":0,"creation-time":1745220029116,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-6","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029122,"group-sequence":0,"creation-time":1745220029122,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-7","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029125,"group-sequence":0,"creation-time":1745220029125,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-8","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029130,"group-sequence":0,"creation-time":1745220029130,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-9","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1745220029136,"group-sequence":0,"creation-time":1745220029136,"content-type":null,"id":"de5cf604-2597-42f8-9cda-d00b72262f67:1:1:1-10","reply-to":null,"properties":{"JMSXDeliveryCount":1}} 2025-04-21T07:20:29.904Z DEBUG [default][MessagingClient:57] [systemtests-clients-756cb765bd-twbmw] All messages are same. Good. 2025-04-21T07:20:29.904Z INFO [default][SmokeTests:166] [smoke-tests-7a8] Starting SystemTest clients MQTT subscriber - publisher test 2025-04-21T07:20:30.033Z WARN [default][MqttClient:276] [systemtests-clients-756cb765bd-twbmw] MQTT client does not support FQQN (!?) Using provided address instead myAddress0 2025-04-21T07:20:30.034Z INFO [default][ExecutorOperator:94] [smoke-tests-7a8] systemtests-clients-756cb765bd-twbmw Running background command: [cli-hivemq-mqtt-subscribe -d --host 10.131.0.30 --port 5672 --topic myAddress0 --identifier pastyreceiver] 2025-04-21T07:20:30.107Z DEBUG [default][MqttClient:159] [systemtests-clients-756cb765bd-twbmw][SUBSCRIBE] Sleeping for while to ensure subscriber is connected before moving forward 2025-04-21T07:20:35.108Z WARN [default][MqttClient:276] [systemtests-clients-756cb765bd-twbmw] MQTT client does not support FQQN (!?) Using provided address instead myAddress0 2025-04-21T07:20:35.109Z DEBUG [default][ExecutorOperator:79] [smoke-tests-7a8] systemtests-clients-756cb765bd-twbmw Running command: cli-hivemq-mqtt-publish -d --host 10.131.0.30 --port 5672 --topic myAddress0 --identifier pasty --message 7c4b79bd97a5456b958ba5b477 --userProperty id=db6326 2025-04-21T07:20:36.105Z DEBUG [default][MqttClient:123] [systemtests-clients-756cb765bd-twbmw][TX] Client 'pasty@10.131.0.30' sending CONNECT MqttConnect{keepAlive=60, cleanStart=true, sessionExpiryInterval=0} Client 'pasty@10.131.0.30' received CONNACK MqttConnAck{reasonCode=SUCCESS, sessionPresent=false, restrictions=MqttConnAckRestrictions{receiveMaximum=65535, maximumPacketSize=268435455, topicAliasMaximum=65535, maximumQos=EXACTLY_ONCE, retainAvailable=true, wildcardSubscriptionAvailable=true, sharedSubscriptionAvailable=true, subscriptionIdentifiersAvailable=true}} Client 'pasty@10.131.0.30' sending PUBLISH ('7c4b79bd97a5456b958ba5b477') MqttPublish{topic=myAddress0, payload=26byte, qos=AT_MOST_ONCE, retain=false, userProperties=[(id, db6326)]} Client 'pasty@10.131.0.30' finish PUBLISH MqttPublishResult{publish=MqttPublish{topic=myAddress0, payload=26byte, qos=AT_MOST_ONCE, retain=false, userProperties=[(id, db6326)]}} 2025-04-21T07:20:36.108Z DEBUG [default][ExecutorOperator:79] [smoke-tests-7a8] systemtests-clients-756cb765bd-twbmw Running command: sh -c for proc in /proc/[0-9]*/cmdline; do echo $(basename $(dirname $proc)) $(cat $proc | tr "\0" " "); done | grep pastyreceiver | grep -v grep | cut -d ' ' -f 1 | xargs kill 2025-04-21T07:20:36.228Z DEBUG [default][MqttClient:170] [systemtests-clients-756cb765bd-twbmw][UNSUBSCRIBE] MQTT Client with pastyreceiver 2025-04-21T07:20:36.228Z DEBUG [default][ExecutorOperator:118] Waiting for command to finish (checking every 5s) 2025-04-21T07:20:41.229Z DEBUG [default][ExecutorOperator:121] Client 'pastyreceiver@10.131.0.30' sending CONNECT MqttConnect{keepAlive=60, cleanStart=true, sessionExpiryInterval=0} Client 'pastyreceiver@10.131.0.30' received CONNACK MqttConnAck{reasonCode=SUCCESS, sessionPresent=false, restrictions=MqttConnAckRestrictions{receiveMaximum=65535, maximumPacketSize=268435455, topicAliasMaximum=65535, maximumQos=EXACTLY_ONCE, retainAvailable=true, wildcardSubscriptionAvailable=true, sharedSubscriptionAvailable=true, subscriptionIdentifiersAvailable=true}} Client 'pastyreceiver@10.131.0.30' sending SUBSCRIBE MqttSubscribe{subscriptions=[MqttSubscription{topicFilter=myAddress0, qos=EXACTLY_ONCE, noLocal=false, retainHandling=SEND, retainAsPublished=false}]} Client 'pastyreceiver@10.131.0.30' received SUBACK MqttSubAck{reasonCodes=[GRANTED_QOS_2], packetIdentifier=65526} Client 'pastyreceiver@10.131.0.30' received PUBLISH ('7c4b79bd97a5456b958ba5b477') MqttPublish{topic=myAddress0, payload=26byte, qos=AT_MOST_ONCE, retain=false, userProperties=[(id, db6326)]} 7c4b79bd97a5456b958ba5b477 2025-04-21T07:20:41.230Z DEBUG [default][MqttClient:218] [systemtests-clients-756cb765bd-twbmw] All messages are same. Good. 2025-04-21T07:20:41.230Z DEBUG [default][ResourceManager:686] [smoke-tests-7a8] Removed clients deployment systemtests-clients 2025-04-21T07:20:41.246Z INFO [default][ResourceManager:405] [smoke-tests-7a8] Deleted ActiveMQArtemisAddress artemis-address-queue 2025-04-21T07:20:41.255Z INFO [default][ResourceManager:595] [smoke-tests-7a8] Waiting 60s for deletion of broker artemis-broker 2025-04-21T07:20:41.256Z DEBUG [default][TestUtils:196] [WAIT] ActiveMQArtemis statefulSet & related pods to be removed 2025-04-21T07:20:46.285Z DEBUG [default][ResourceManager:612] [smoke-tests-7a8] Removed updated ActiveMQArtemis object artemis-broker 2025-04-21T07:20:46.285Z INFO [default][ResourceManager:330] [smoke-tests-7a8] Deleted ActiveMQArtemis artemis-broker 2025-04-21T07:20:46.286Z INFO [default][TestSeparator:44] Finished: io.brokerqe.claire.smoke.SmokeTests.sendReceiveSystemTestsClientMessageTest 2025-04-21T07:20:46.286Z INFO [default][TestSeparator:45] ---------------------------------------------------------------------------- 2025-04-21T07:20:46.287Z INFO [default][TestSeparator:35] ---------------------------------------------------------------------------- 2025-04-21T07:20:46.287Z INFO [default][TestSeparator:36] [5/6] Started: io.brokerqe.claire.smoke.SmokeTests.testDefaultBrokerVersion 2025-04-21T07:20:46.297Z DEBUG [default][TestUtils:390] Parsed version: 7.12.4 from 7.12.4-opr-1. 2025-04-21T07:20:46.312Z INFO [default][ResourceManager:294] Created ActiveMQArtemis ActiveMQArtemis() in namespace smoke-tests-7a8 2025-04-21T07:20:46.313Z INFO [default][ResourceManager:543] [smoke-tests-7a8] Waiting 90s for creation of broker smoke 2025-04-21T07:20:46.313Z DEBUG [default][TestUtils:196] [WAIT] StatefulSet to be ready 2025-04-21T07:21:11.346Z DEBUG [default][ResourceManager:581] [smoke-tests-7a8] Waiting for expected broker pods count: 1 2025-04-21T07:21:11.346Z DEBUG [default][TestUtils:196] [WAIT] all broker pods to start 2025-04-21T07:21:11.363Z INFO [default][SmokeTests:326] [smoke-tests-7a8] Check expected version 7.12.4 in smoke-ss-0 pod logs 2025-04-21T07:21:11.390Z INFO [default][ResourceManager:595] [smoke-tests-7a8] Waiting 60s for deletion of broker smoke 2025-04-21T07:21:11.390Z DEBUG [default][TestUtils:196] [WAIT] ActiveMQArtemis statefulSet & related pods to be removed 2025-04-21T07:21:16.408Z INFO [default][ResourceManager:330] [smoke-tests-7a8] Deleted ActiveMQArtemis smoke 2025-04-21T07:21:16.409Z INFO [default][TestSeparator:44] Finished: io.brokerqe.claire.smoke.SmokeTests.testDefaultBrokerVersion 2025-04-21T07:21:16.409Z INFO [default][TestSeparator:45] ---------------------------------------------------------------------------- 2025-04-21T07:21:16.411Z DEBUG [default][DisabledTestPlatform$DisabledTestPlatformCondition:79] [TEST][io.brokerqe.claire.smoke.SmokeTeststestConsoleProvidedVersion]: Test/class do not meet DisabledTestPlatformCondition criteria. 2025-04-21T07:21:16.412Z INFO [default][TestSeparator:35] ---------------------------------------------------------------------------- 2025-04-21T07:21:16.412Z INFO [default][TestSeparator:36] [6/6] Started: io.brokerqe.claire.smoke.SmokeTests.testConsoleProvidedVersion 2025-04-21T07:21:16.885Z INFO [default][ResourceManager:294] Created ActiveMQArtemis ActiveMQArtemis() in namespace smoke-tests-7a8 2025-04-21T07:21:16.886Z INFO [default][ResourceManager:543] [smoke-tests-7a8] Waiting 60s for creation of broker smoke 2025-04-21T07:21:16.886Z DEBUG [default][TestUtils:196] [WAIT] StatefulSet to be ready 2025-04-21T07:21:31.907Z DEBUG [default][ResourceManager:581] [smoke-tests-7a8] Waiting for expected broker pods count: 1 2025-04-21T07:21:31.907Z DEBUG [default][TestUtils:196] [WAIT] all broker pods to start 2025-04-21T07:21:31.924Z DEBUG [default][KubeClient:667] [smoke-tests-7a8] Searching for route with smoke-wconsj-0-svc-rte 2025-04-21T07:21:31.934Z DEBUG [default][TestUtils:196] [WAIT] wait for console be ready 2025-04-21T07:21:32.017Z INFO [default][OperatorTestDataCollector:61] Error detected! Will gather data from namespace: smoke-tests-7a8 2025-04-21T07:21:32.017Z DEBUG [default][OperatorTestDataCollector:67] [smoke-tests-7a8] Gathering debug data for failed io.brokerqe.claire.smoke.SmokeTests#testConsoleProvidedVersion into /app/operator-suite/test-logs/2025-04-21_07-16-04/smoke.SmokeTests.testConsoleProvidedVersion//smoke-tests-7a8 2025-04-21T07:21:32.212Z WARN [default][VersionUsageUtils:60] The client is using resource type 'activemqartemissecurities' with unstable version 'v1beta1' 2025-04-21T07:21:33.544Z DEBUG [default][ExecutorOperator:79] [smoke-tests-7a8] smoke-ss-0 Running command: /bin/bash -c find /amq/extra/ -type f 2025-04-21T07:21:33.713Z INFO [default][TestSeparator:44] Finished: io.brokerqe.claire.smoke.SmokeTests.testConsoleProvidedVersion 2025-04-21T07:21:33.713Z INFO [default][TestSeparator:45] ---------------------------------------------------------------------------- 2025-04-21T07:21:33.719Z DEBUG [default][ArtemisCloudClusterOperatorOlm:193] [smoke-tests-7a8] Going to undeploy [amq-broker-rhel8-ec, amq-broker-rhel8-ec] 2025-04-21T07:21:33.736Z INFO [default][ArtemisCloudClusterOperatorOlm:195] [smoke-tests-7a8] [OLM] Successfully undeployed ArtemisCloudOperator 2025-04-21T07:21:33.736Z INFO [default][KubeClient:169] Deleting namespace smoke-tests-7a8 2025-04-21T07:21:33.758Z DEBUG [default][TestUtils:196] [WAIT] Deletion of namespace 2025-04-21T07:21:41.805Z INFO [default][TestSeparator:51] Finished Class: io.brokerqe.claire.smoke.SmokeTests 2025-04-21T07:21:41.806Z INFO [default][TestSeparator:52] ---------------------------------------------------------------------------- [ERROR] Tests run: 5, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 177.9 s <<< FAILURE! -- in io.brokerqe.claire.smoke.SmokeTests [ERROR] io.brokerqe.claire.smoke.SmokeTests.testConsoleProvidedVersion -- Time elapsed: 17.31 s <<< FAILURE! java.lang.AssertionError: Expected: a string containing "7.12.3" but: was "7.12.4" at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:20) at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:6) at io.brokerqe.claire.AbstractSystemTests.checkHttpResponse(AbstractSystemTests.java:397) at io.brokerqe.claire.smoke.SmokeTests.testConsoleProvidedVersion(SmokeTests.java:372) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) 2025-04-21T07:21:41.809Z DEBUG [default][OperatorExecutionListener:39] Teardown environment started 2025-04-21T07:21:41.809Z WARN [default][ResourceManager:948] [smoke-tests-7a8] Undeploying orphaned Artemis smoke! 2025-04-21T07:21:41.817Z DEBUG [default][OperatorExecutionListener:44] Teardown environment finished 2025-04-21T07:21:41.817Z DEBUG [default][OperatorExecutionListener:47] Resetting setupPerformed to 'false' [INFO] [INFO] Results: [INFO] [ERROR] Failures: [ERROR] SmokeTests.testConsoleProvidedVersion:372->AbstractSystemTests.checkHttpResponse:397 Expected: a string containing "7.12.3" but: was "7.12.4" [INFO] [ERROR] Tests run: 6, Failures: 1, Errors: 0, Skipped: 0 [INFO] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 05:39 min [INFO] Finished at: 2025-04-21T07:21:42Z [INFO] ------------------------------------------------------------------------ cp -axv /app/operator-suite/target/failsafe-reports/* /app/test-results/operator-suite/ '/app/operator-suite/target/failsafe-reports/failsafe-summary.xml' -> '/app/test-results/operator-suite/failsafe-summary.xml' '/app/operator-suite/target/failsafe-reports/io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests.txt' -> '/app/test-results/operator-suite/io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests.txt' '/app/operator-suite/target/failsafe-reports/io.brokerqe.claire.smoke.SmokeTests.txt' -> '/app/test-results/operator-suite/io.brokerqe.claire.smoke.SmokeTests.txt' '/app/operator-suite/target/failsafe-reports/TEST-io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests.xml' -> '/app/test-results/operator-suite/TEST-io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests.xml' '/app/operator-suite/target/failsafe-reports/TEST-io.brokerqe.claire.smoke.SmokeTests.xml' -> '/app/test-results/operator-suite/TEST-io.brokerqe.claire.smoke.SmokeTests.xml' [2025-04-21 07:21:42 +0000] - Finished Claire execution Mon Apr 21 07:21:42 AM UTC 2025 [2025-04-21 07:21:42 +0000] - sleeping forever [2025-04-21 07:21:42 +0000] - Finished Claire execution Mon Apr 21 07:21:42 AM UTC 2025 [2025-04-21 07:21:48 +0000] - Deleting Namespace claire apiVersion: v1 kind: Namespace metadata: name: claire Renaming xmls to junit_*.xml Copy logs and xmls to ARTIFACT_DIR namespace "claire" deleted