You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gn...@apache.org on 2021/03/29 11:22:07 UTC

[camel] branch master updated (18076eb -> 333fead)

This is an automated email from the ASF dual-hosted git repository.

gnodet pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 18076eb  CAMEL-16410: camel-zipfile and camel-tarfile - Fix dataformat in iterator mode should fail if zip/tar file is corrupt.
     new c71fe0d  Use the property to configure the surefire vm args
     new 71d4735  Disable hanging test on OSX
     new 333fead  Fix unit test

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 components/camel-bindy/pom.xml                             | 14 ++++----------
 .../apache/camel/component/ignite/IgniteComputeTest.java   |  3 +++
 .../camel/openapi/producer/RestOpenApiGetUriParamTest.java |  2 +-
 3 files changed, 8 insertions(+), 11 deletions(-)

[camel] 03/03: Fix unit test

Posted by gn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 333fead8f4291568ec241fa1b6b01bd04e7a15e4
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Mon Mar 29 13:17:55 2021 +0200

    Fix unit test
---
 .../org/apache/camel/openapi/producer/RestOpenApiGetUriParamTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-openapi-java/src/test/java/org/apache/camel/openapi/producer/RestOpenApiGetUriParamTest.java b/components/camel-openapi-java/src/test/java/org/apache/camel/openapi/producer/RestOpenApiGetUriParamTest.java
index 47c6e3f..28d2c50 100644
--- a/components/camel-openapi-java/src/test/java/org/apache/camel/openapi/producer/RestOpenApiGetUriParamTest.java
+++ b/components/camel-openapi-java/src/test/java/org/apache/camel/openapi/producer/RestOpenApiGetUriParamTest.java
@@ -29,7 +29,7 @@ public class RestOpenApiGetUriParamTest extends CamelTestSupport {
 
     @Test
     public void testOpenApiGet() throws Exception {
-        getMockEndpoint("mock:result").expectedBodiesReceived("Bye Donald+Duck");
+        getMockEndpoint("mock:result").expectedBodiesReceived("Bye Donald%20Duck");
 
         template.sendBodyAndHeader("direct:start", null, "name", "Donald Duck");
 

[camel] 01/03: Use the property to configure the surefire vm args

Posted by gn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c71fe0da51f47aa1d6cc712360b18dffaa982010
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Mon Mar 29 11:22:59 2021 +0200

    Use the property to configure the surefire vm args
---
 components/camel-bindy/pom.xml | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/components/camel-bindy/pom.xml b/components/camel-bindy/pom.xml
index eb7d7f1..fafde05 100644
--- a/components/camel-bindy/pom.xml
+++ b/components/camel-bindy/pom.xml
@@ -31,6 +31,10 @@
     <name>Camel :: Bindy</name>
     <description>Camel Bindy data format support</description>
 
+    <properties>
+        <camel.surefire.fork.vmargs>-XX:+ExitOnOutOfMemoryError -Duser.language=en -Duser.region=GB</camel.surefire.fork.vmargs>
+    </properties>
+
     <dependencies>
 
         <dependency>
@@ -77,14 +81,4 @@
 
     </dependencies>
 
-    <build>
-        <plugins>
-            <plugin>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <configuration>
-                    <argLine>-Duser.language=en -Duser.region=GB</argLine>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
 </project>

[camel] 02/03: Disable hanging test on OSX

Posted by gn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 71d4735dedb906be9c5c3abc41153b93f05c710f
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Mon Mar 29 11:51:26 2021 +0200

    Disable hanging test on OSX
---
 .../test/java/org/apache/camel/component/ignite/IgniteComputeTest.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/components/camel-ignite/src/test/java/org/apache/camel/component/ignite/IgniteComputeTest.java b/components/camel-ignite/src/test/java/org/apache/camel/component/ignite/IgniteComputeTest.java
index c294b5d..443efa5 100644
--- a/components/camel-ignite/src/test/java/org/apache/camel/component/ignite/IgniteComputeTest.java
+++ b/components/camel-ignite/src/test/java/org/apache/camel/component/ignite/IgniteComputeTest.java
@@ -35,10 +35,13 @@ import org.assertj.core.api.Assertions;
 import org.junit.jupiter.api.AfterEach;
 import org.junit.jupiter.api.Test;
 import org.junit.jupiter.api.TestInstance;
+import org.junit.jupiter.api.condition.DisabledOnOs;
+import org.junit.jupiter.api.condition.OS;
 
 import static org.junit.jupiter.api.Assertions.fail;
 
 @TestInstance(TestInstance.Lifecycle.PER_CLASS)
+@DisabledOnOs(OS.MAC)
 public class IgniteComputeTest extends AbstractIgniteTest {
 
     private static final List<Ignite> ADDITIONAL_INSTANCES = Lists.newArrayList();