From 97b37779f566372be323d19e229e70d576ae06cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrej=20Va=C5=88o?= Date: Fri, 26 Apr 2024 06:00:55 +0200 Subject: [PATCH] [LRA] Fix test when running with DOCKER_HOST (#6042) --- .../quarkus/component/lra/it/LraTestResource.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/integration-tests/lra/src/test/java/org/apache/camel/quarkus/component/lra/it/LraTestResource.java b/integration-tests/lra/src/test/java/org/apache/camel/quarkus/component/lra/it/LraTestResource.java index 49e1e5be05a8..dcfbefbe925a 100644 --- a/integration-tests/lra/src/test/java/org/apache/camel/quarkus/component/lra/it/LraTestResource.java +++ b/integration-tests/lra/src/test/java/org/apache/camel/quarkus/component/lra/it/LraTestResource.java @@ -58,7 +58,18 @@ public Map start() { lraPort = container.getMappedPort(LRA_PORT); } + // If the test runs with a remote docker, it needs to know the IP of the machine where the test app runs + if (System.getenv("DOCKER_HOST") != null) { + hostname = System.getProperty("lra.appNode.ip"); + if (hostname == null) { + throw new RuntimeException( + "You need to supply application node IP when running LRA test with a remote docker instance using lra.appNode.ip property"); + } + } + return CollectionHelper.mapOf( + // In case of remote docker, expose the endpoint at 0.0.0.0, as the default is "localhost" only + "quarkus.http.host", "0.0.0.0", "camel.lra.coordinator-url", String.format("http://%s:%d", container.getHost(), lraPort), "camel.lra.local-participant-url",