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 5e69c239fb0c87352938502a64d5a102fc2d08e4 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Dec 17 11:49:57 2018 +0100 Camel-Kubernetes: Fixed tests after upgrading to version 4.1.1 --- .../kubernetes/producer/KubernetesHPAProducerTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/camel-kubernetes/src/test/java/org/apache/camel/component/kubernetes/producer/KubernetesHPAProducerTest.java b/components/camel-kubernetes/src/test/java/org/apache/camel/component/kubernetes/producer/KubernetesHPAProducerTest.java index 2c30b6d..181562f 100644 --- a/components/camel-kubernetes/src/test/java/org/apache/camel/component/kubernetes/producer/KubernetesHPAProducerTest.java +++ b/components/camel-kubernetes/src/test/java/org/apache/camel/component/kubernetes/producer/KubernetesHPAProducerTest.java @@ -49,7 +49,7 @@ public class KubernetesHPAProducerTest extends KubernetesTestSupport { @Test public void listTest() throws Exception { - server.expect().withPath("/apis/autoscaling/v1/namespaces/test/horizontalpodautoscalers") + server.expect().withPath("/apis/autoscaling/v2beta1/namespaces/test/horizontalpodautoscalers") .andReturn(200, new HorizontalPodAutoscalerListBuilder().addNewItem().and().addNewItem().and().addNewItem().and().build()).once(); List<HorizontalPodAutoscaler> result = template.requestBody("direct:list", "", List.class); @@ -58,7 +58,7 @@ public class KubernetesHPAProducerTest extends KubernetesTestSupport { @Test public void listByLabelsTest() throws Exception { - server.expect().withPath("/apis/autoscaling/v1/namespaces/test/horizontalpodautoscalers?labelSelector=" + toUrlEncoded("key1=value1,key2=value2")) + server.expect().withPath("/apis/autoscaling/v2beta1/namespaces/test/horizontalpodautoscalers?labelSelector=" + toUrlEncoded("key1=value1,key2=value2")) .andReturn(200, new PodListBuilder().addNewItem().and().addNewItem().and().addNewItem().and().build()).once(); Exchange ex = template.request("direct:listByLabels", new Processor() { @@ -81,8 +81,8 @@ public class KubernetesHPAProducerTest extends KubernetesTestSupport { HorizontalPodAutoscaler hpa1 = new HorizontalPodAutoscalerBuilder().withNewMetadata().withName("hpa1").withNamespace("test").and().build(); HorizontalPodAutoscaler hpa2 = new HorizontalPodAutoscalerBuilder().withNewMetadata().withName("hpa2").withNamespace("ns1").and().build(); - server.expect().withPath("/apis/autoscaling/v1/namespaces/test/horizontalpodautoscalers/hpa1").andReturn(200, hpa1).once(); - server.expect().withPath("/apis/autoscaling/v1/namespaces/ns1/horizontalpodautoscalers/hpa2").andReturn(200, hpa2).once(); + server.expect().withPath("/apis/autoscaling/v2beta1/namespaces/test/horizontalpodautoscalers/hpa1").andReturn(200, hpa1).once(); + server.expect().withPath("/apis/autoscaling/v2beta1/namespaces/ns1/horizontalpodautoscalers/hpa2").andReturn(200, hpa2).once(); Exchange ex = template.request("direct:getHPA", new Processor() { @Override @@ -100,7 +100,7 @@ public class KubernetesHPAProducerTest extends KubernetesTestSupport { @Test public void deleteHPATest() throws Exception { HorizontalPodAutoscaler hpa1 = new HorizontalPodAutoscalerBuilder().withNewMetadata().withName("hpa1").withNamespace("test").and().build(); - server.expect().withPath("/apis/autoscaling/v1/namespaces/test/horizontalpodautoscalers/hpa1").andReturn(200, hpa1).once(); + server.expect().withPath("/apis/autoscaling/v2beta1/namespaces/test/horizontalpodautoscalers/hpa1").andReturn(200, hpa1).once(); Exchange ex = template.request("direct:deleteHPA", new Processor() {