This is an automated email from the ASF dual-hosted git repository.
orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 609111d989e (chores) camel-nats: fix test log output to stdout (#11004)
609111d989e is described below
commit 609111d989eb11f2d382be93f0e31c4257d25d1c
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Fri Aug 4 16:37:54 2023 +0200
(chores) camel-nats: fix test log output to stdout (#11004)
---
components/camel-nats/pom.xml | 7 +++++++
.../component/nats/integration/NatsITSupport.java | 18 ++++++++++++++++++
.../camel-nats/src/test/resources/logging.properties | 18 ++++++++++++++++++
3 files changed, 43 insertions(+)
diff --git a/components/camel-nats/pom.xml b/components/camel-nats/pom.xml
index 5167686a75f..3c0954cbe28 100644
--- a/components/camel-nats/pom.xml
+++ b/components/camel-nats/pom.xml
@@ -62,5 +62,12 @@
<type>test-jar</type>
<scope>test</scope>
</dependency>
+
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>jul-to-slf4j</artifactId>
+ <version>${slf4j-version}</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
</project>
diff --git
a/components/camel-nats/src/test/java/org/apache/camel/component/nats/integration/NatsITSupport.java
b/components/camel-nats/src/test/java/org/apache/camel/component/nats/integration/NatsITSupport.java
index ea2b347dacc..0f72898fa8b 100644
---
a/components/camel-nats/src/test/java/org/apache/camel/component/nats/integration/NatsITSupport.java
+++
b/components/camel-nats/src/test/java/org/apache/camel/component/nats/integration/NatsITSupport.java
@@ -16,17 +16,35 @@
*/
package org.apache.camel.component.nats.integration;
+import java.io.IOException;
+import java.io.InputStream;
+import java.util.logging.LogManager;
+
import org.apache.camel.CamelContext;
import org.apache.camel.component.nats.NatsComponent;
import org.apache.camel.test.infra.nats.services.NatsService;
import org.apache.camel.test.infra.nats.services.NatsServiceFactory;
import org.apache.camel.test.junit5.CamelTestSupport;
import org.junit.jupiter.api.extension.RegisterExtension;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
public class NatsITSupport extends CamelTestSupport {
@RegisterExtension
static NatsService service = NatsServiceFactory.createService();
+ static {
+ try (InputStream is =
NatsITSupport.class.getClassLoader().getResourceAsStream("logging.properties"))
{
+ LogManager.getLogManager().readConfiguration(is);
+ } catch (IOException e) {
+ Logger logger = LoggerFactory.getLogger(NatsITSupport.class);
+
+ logger.warn(
+ "Unable to setup JUL-to-slf4j logging bridge. The test
execution should result in a log of bogus output. Error: {}",
+ e.getMessage(), e);
+ }
+ }
+
@Override
protected CamelContext createCamelContext() throws Exception {
CamelContext context = super.createCamelContext();
diff --git a/components/camel-nats/src/test/resources/logging.properties
b/components/camel-nats/src/test/resources/logging.properties
new file mode 100644
index 00000000000..24628f3ff2f
--- /dev/null
+++ b/components/camel-nats/src/test/resources/logging.properties
@@ -0,0 +1,18 @@
+## ---------------------------------------------------------------------------
+## Licensed to the Apache Software Foundation (ASF) under one or more
+## contributor license agreements. See the NOTICE file distributed with
+## this work for additional information regarding copyright ownership.
+## The ASF licenses this file to You 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.
+## ---------------------------------------------------------------------------
+handlers = org.slf4j.bridge.SLF4JBridgeHandler
+.level = FINEST