This is an automated email from the ASF dual-hosted git repository.
davsclaus 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 a151d0d3c78 CAMEL-20367: Adds adding custom jar test (#15673)
a151d0d3c78 is described below
commit a151d0d3c7822ae83b13b1af22dfdd7ed70f9ab4
Author: Jakub Vrubel <[email protected]>
AuthorDate: Wed Sep 25 06:13:20 2024 +0200
CAMEL-20367: Adds adding custom jar test (#15673)
---
.../camel/dsl/jbang/it/CustomJarsITCase.java | 51 ++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git
a/dsl/camel-jbang/camel-jbang-it/src/test/java/org/apache/camel/dsl/jbang/it/CustomJarsITCase.java
b/dsl/camel-jbang/camel-jbang-it/src/test/java/org/apache/camel/dsl/jbang/it/CustomJarsITCase.java
new file mode 100644
index 00000000000..9cf7c3159b0
--- /dev/null
+++
b/dsl/camel-jbang/camel-jbang-it/src/test/java/org/apache/camel/dsl/jbang/it/CustomJarsITCase.java
@@ -0,0 +1,51 @@
+/*
+ * 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.
+ */
+package org.apache.camel.dsl.jbang.it;
+
+import java.io.IOException;
+import java.time.Duration;
+
+import org.apache.camel.dsl.jbang.it.support.JBangTestSupport;
+import org.assertj.core.api.Assertions;
+import org.awaitility.Awaitility;
+import org.junit.jupiter.api.Test;
+
+public class CustomJarsITCase extends JBangTestSupport {
+
+ @Test
+ public void testCustomJars() throws IOException {
+ copyResourceInDataFolder(TestResources.CIRCUIT_BREAKER);
+ try {
+ ProcessBuilder builder = new ProcessBuilder(
+ "/bin/bash", "-c", String.format("camel run
%s/CircuitBreakerRoute.java", mountPoint()));
+ builder.redirectErrorStream(true);
+ final Process process = builder.start();
+ Awaitility.await("process is running")
+ .atMost(Duration.ofMinutes(2))
+ .pollInterval(Duration.ofSeconds(1))
+ .until(() -> !process.isAlive());
+ Assertions.assertThat(process.exitValue())
+ .as("Running CircuitBreakerRoute.java without custom jar
should fail")
+ .isNotEqualTo(0);
+ } catch (IOException e) {
+ throw new RuntimeException(e);
+ }
+ executeBackground(String.format("run %s/CircuitBreakerRoute.java
--dep=camel-resilience4j", mountPoint()));
+ checkLogContains("resilience4j");
+
+ }
+}