This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch sandbox/camel-3.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 0c0a9e07257a57dd3e5f5da3db3417432547cb84 Author: Andrea Cosentino <[email protected]> AuthorDate: Mon Oct 15 08:30:29 2018 +0200 The Camel-Kubernetes Spring-boot itest needs to test the new endpoints --- .../camel/itest/springboot/CamelKubernetesTest.java | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelKubernetesTest.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelKubernetesTest.java index 3d44a26..506fc05 100644 --- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelKubernetesTest.java +++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelKubernetesTest.java @@ -41,7 +41,23 @@ public class CamelKubernetesTest extends AbstractSpringBootTestSupport { @Test public void componentTests() throws Exception { - this.runComponentTest(config); + this.runComponentTest(createTestConfig(), "kubernetes-config-maps"); + this.runComponentTest(createTestConfig(), "kubernetes-deployments"); + this.runComponentTest(createTestConfig(), "kubernetes-hpa"); + this.runComponentTest(createTestConfig(), "kubernetes-job"); + this.runComponentTest(createTestConfig(), "kubernetes-namespaces"); + this.runComponentTest(createTestConfig(), "kubernetes-nodes"); + this.runComponentTest(createTestConfig(), "kubernetes-persistent-volumes-claims"); + this.runComponentTest(createTestConfig(), "kubernetes-persistent-volumes"); + this.runComponentTest(createTestConfig(), "kubernetes-pods"); + this.runComponentTest(createTestConfig(), "kubernetes-replication-controllers"); + this.runComponentTest(createTestConfig(), "kubernetes-resources-quota"); + this.runComponentTest(createTestConfig(), "kubernetes-secrets"); + this.runComponentTest(createTestConfig(), "kubernetes-service-accounts"); + this.runComponentTest(createTestConfig(), "kubernetes-services"); + this.runComponentTest(createTestConfig(), "openshift-builds"); + this.runComponentTest(createTestConfig(), "openshift-build-configs"); + this.runModuleUnitTestsIfEnabled(config); }
