You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/06/03 09:51:21 UTC

[camel] branch master updated (022146a -> d19f9cd)

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

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


    from 022146a  CAMEL-13603 - Camel-Grok: Create Karaf feature
     new 4bf8f89  CAMEL-13604 - Camel-Grok: Add integration test for Karaf an Spring Boot, Karaf test
     new d19f9cd  CAMEL-13604 - Camel-Grok: Add integration test for Karaf an Spring Boot, SB Test

The 2 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:
 .../camel/itest/karaf/{CamelBoonTest.java => CamelGrokTest.java}      | 4 ++--
 .../camel/itest/springboot/{CamelBoonTest.java => CamelGrokTest.java} | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
 copy tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/{CamelBoonTest.java => CamelGrokTest.java} (90%)
 copy tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/{CamelBoonTest.java => CamelGrokTest.java} (92%)


[camel] 02/02: CAMEL-13604 - Camel-Grok: Add integration test for Karaf an Spring Boot, SB Test

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

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

commit d19f9cdc48b2aa37e27f017643eef00c241b236d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Jun 3 11:50:57 2019 +0200

    CAMEL-13604 - Camel-Grok: Add integration test for Karaf an Spring Boot, SB Test
---
 .../camel/itest/springboot/CamelGrokTest.java      | 48 ++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelGrokTest.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelGrokTest.java
new file mode 100644
index 0000000..266518c
--- /dev/null
+++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelGrokTest.java
@@ -0,0 +1,48 @@
+/*
+ * 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.itest.springboot;
+
+import org.apache.camel.itest.springboot.util.ArquillianPackager;
+import org.jboss.arquillian.container.test.api.Deployment;
+import org.jboss.arquillian.junit.Arquillian;
+import org.jboss.shrinkwrap.api.Archive;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+
+
+@RunWith(Arquillian.class)
+public class CamelGrokTest extends AbstractSpringBootTestSupport {
+
+    @Deployment
+    public static Archive<?> createSpringBootPackage() throws Exception {
+        return ArquillianPackager.springBootPackage(createTestConfig());
+    }
+
+    public static ITestConfig createTestConfig() {
+        return new ITestConfigBuilder()
+                .module(inferModuleName(CamelGrokTest.class))
+                .build();
+    }
+
+    @Test
+    public void componentTests() throws Exception {
+        this.runDataformatTest(config);
+        this.runModuleUnitTestsIfEnabled(config);
+    }
+
+
+}


[camel] 01/02: CAMEL-13604 - Camel-Grok: Add integration test for Karaf an Spring Boot, Karaf test

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

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

commit 4bf8f89094769c7f497c311772a3f5f51ac9f727
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Jun 3 11:45:41 2019 +0200

    CAMEL-13604 - Camel-Grok: Add integration test for Karaf an Spring Boot, Karaf test
---
 .../apache/camel/itest/karaf/CamelGrokTest.java    | 33 ++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelGrokTest.java b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelGrokTest.java
new file mode 100644
index 0000000..860191e
--- /dev/null
+++ b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelGrokTest.java
@@ -0,0 +1,33 @@
+/*
+ * 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.itest.karaf;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.ops4j.pax.exam.junit.PaxExam;
+
+@RunWith(PaxExam.class)
+public class CamelGrokTest extends BaseKarafTest {
+
+    public static final String COMPONENT = extractName(CamelGrokTest.class);
+
+    @Test
+    public void test() throws Exception {
+        testDataFormat(COMPONENT);
+    }
+
+}