You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/03/05 06:49:57 UTC

[camel] branch master updated (68742b3 -> f44b207)

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

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


    from 68742b3  Camel-AWS2-ECS: Fixed CS
     new 3ebce43  Fixed test
     new 26168a3  Fixed tests
     new f44b207  Fixed 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:
 .../java/org/apache/camel/component/jt400/Jt400EndpointTest.java  | 4 ----
 .../org/apache/camel/component/jt400/Jt400PgmEndpointTest.java    | 5 -----
 .../org/apache/camel/component/jt400/Jt400SrvPgmEndpointTest.java | 8 --------
 components/camel-kura/pom.xml                                     | 5 +++++
 components/camel-osgi-activator/pom.xml                           | 4 ++++
 components/camel-osgi-activator/src/assembly/test-bundles.xml     | 2 +-
 .../org/apache/camel/component/osgi/activator/PaxExamOptions.java | 1 +
 7 files changed, 11 insertions(+), 18 deletions(-)


[camel] 01/03: Fixed test

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

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

commit 3ebce43e5616817c0c5d0707c7c4d70c0b8e250d
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Mar 5 07:40:58 2020 +0100

    Fixed test
---
 components/camel-kura/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/components/camel-kura/pom.xml b/components/camel-kura/pom.xml
index ebdf97d..c23df0e 100644
--- a/components/camel-kura/pom.xml
+++ b/components/camel-kura/pom.xml
@@ -87,6 +87,11 @@
 
         <dependency>
             <groupId>org.apache.camel</groupId>
+            <artifactId>camel-test</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.camel</groupId>
             <artifactId>camel-xml-jaxb</artifactId>
             <scope>test</scope>
         </dependency>


[camel] 03/03: Fixed test

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

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

commit f44b207ba2665ff32341c3e3551e166ed378fae2
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Mar 5 07:49:40 2020 +0100

    Fixed test
---
 components/camel-osgi-activator/pom.xml                               | 4 ++++
 components/camel-osgi-activator/src/assembly/test-bundles.xml         | 2 +-
 .../org/apache/camel/component/osgi/activator/PaxExamOptions.java     | 1 +
 3 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/components/camel-osgi-activator/pom.xml b/components/camel-osgi-activator/pom.xml
index 635c501..6c81feb 100644
--- a/components/camel-osgi-activator/pom.xml
+++ b/components/camel-osgi-activator/pom.xml
@@ -56,6 +56,10 @@
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-core-osgi</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-core-languages</artifactId>
+        </dependency>
         <!-- test -->
         <dependency>
             <groupId>org.apache.camel</groupId>
diff --git a/components/camel-osgi-activator/src/assembly/test-bundles.xml b/components/camel-osgi-activator/src/assembly/test-bundles.xml
index c64ae38..a7798e9 100644
--- a/components/camel-osgi-activator/src/assembly/test-bundles.xml
+++ b/components/camel-osgi-activator/src/assembly/test-bundles.xml
@@ -34,11 +34,11 @@
         <include>org.apache.camel:camel-base</include>
         <include>org.apache.camel:camel-core-engine</include>
         <include>org.apache.camel:camel-core-osgi</include>
+        <include>org.apache.camel:camel-core-languages</include>
         <include>org.apache.camel:camel-management-api</include>
         <include>org.apache.camel:camel-osgi-activator</include>
         <include>org.apache.camel:camel-support</include>
         <include>org.apache.camel:camel-util</include>
-        
         <include>org.apache.camel:camel-timer</include>
         <include>org.apache.camel:camel-log</include>
       </includes>
diff --git a/components/camel-osgi-activator/src/test/java/org/apache/camel/component/osgi/activator/PaxExamOptions.java b/components/camel-osgi-activator/src/test/java/org/apache/camel/component/osgi/activator/PaxExamOptions.java
index 709476e..38f3a8e 100644
--- a/components/camel-osgi-activator/src/test/java/org/apache/camel/component/osgi/activator/PaxExamOptions.java
+++ b/components/camel-osgi-activator/src/test/java/org/apache/camel/component/osgi/activator/PaxExamOptions.java
@@ -63,6 +63,7 @@ public enum PaxExamOptions {
         ),
         CAMEL_CORE_OSGI(
                 createStreamBundleOption("camel-core-engine.jar"),
+                createStreamBundleOption("camel-core-languages.jar"),
                 createStreamBundleOption("camel-api.jar"),
                 createStreamBundleOption("camel-base.jar"),
                 createStreamBundleOption("camel-management-api.jar"),


[camel] 02/03: Fixed tests

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

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

commit 26168a3b91b36f954dda4490f69de5fe89b9459c
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Mar 5 07:43:55 2020 +0100

    Fixed tests
---
 .../java/org/apache/camel/component/jt400/Jt400EndpointTest.java  | 4 ----
 .../org/apache/camel/component/jt400/Jt400PgmEndpointTest.java    | 5 -----
 .../org/apache/camel/component/jt400/Jt400SrvPgmEndpointTest.java | 8 --------
 3 files changed, 17 deletions(-)

diff --git a/components/camel-jt400/src/test/java/org/apache/camel/component/jt400/Jt400EndpointTest.java b/components/camel-jt400/src/test/java/org/apache/camel/component/jt400/Jt400EndpointTest.java
index 8b83c07..e41b6dc4 100644
--- a/components/camel-jt400/src/test/java/org/apache/camel/component/jt400/Jt400EndpointTest.java
+++ b/components/camel-jt400/src/test/java/org/apache/camel/component/jt400/Jt400EndpointTest.java
@@ -45,8 +45,4 @@ public class Jt400EndpointTest extends Jt400TestSupport {
         assertTrue(endpoint.getSystem().isGuiAvailable());
     }
 
-    @Test
-    public void testToString() {
-        assertEquals("jt400://user:xxxxxx@host/qsys.lib/library.lib/queue.dtaq?ccsid=500&connectionPool=%23mockPool&format=binary&guiAvailable=true", endpoint.toString());
-    }
 }
diff --git a/components/camel-jt400/src/test/java/org/apache/camel/component/jt400/Jt400PgmEndpointTest.java b/components/camel-jt400/src/test/java/org/apache/camel/component/jt400/Jt400PgmEndpointTest.java
index 11de5c2..3e18071 100644
--- a/components/camel-jt400/src/test/java/org/apache/camel/component/jt400/Jt400PgmEndpointTest.java
+++ b/components/camel-jt400/src/test/java/org/apache/camel/component/jt400/Jt400PgmEndpointTest.java
@@ -58,9 +58,4 @@ public class Jt400PgmEndpointTest extends Jt400TestSupport {
         assertEquals(true, endpoint.isFieldIdxForOuput(2));
     }
     
-    @Test
-    public void testToString() {
-        assertEquals("jt400://USER:xxxxxx@host/qsys.lib/library.lib/prog.pgm?connectionPool=%23mockPool&fieldsLength=10%2C512%2C255&format=binary&guiAvailable=true&outputFieldsIdx=1%2C2",
-                     endpoint.toString());
-    }
 }
diff --git a/components/camel-jt400/src/test/java/org/apache/camel/component/jt400/Jt400SrvPgmEndpointTest.java b/components/camel-jt400/src/test/java/org/apache/camel/component/jt400/Jt400SrvPgmEndpointTest.java
index 4b467b1..fb0f143 100644
--- a/components/camel-jt400/src/test/java/org/apache/camel/component/jt400/Jt400SrvPgmEndpointTest.java
+++ b/components/camel-jt400/src/test/java/org/apache/camel/component/jt400/Jt400SrvPgmEndpointTest.java
@@ -61,12 +61,4 @@ public class Jt400SrvPgmEndpointTest extends Jt400TestSupport {
         assertEquals(true, endpoint.isFieldIdxForOuput(2));
     }
 
-    @Test
-    public void testToString() {
-        assertEquals(
-                "jt400://USER:xxxxxx@host/qsys.lib/library.lib/prog.srvpgm?connectionPool=%23mockPool&"
-                        + "fieldsLength=10%2C512%2C255&format=binary&guiAvailable=true"
-                        + "&outputFieldsIdx=1%2C2&procedureName=someProcedure",
-                endpoint.toString());
-    }
 }