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 05e4d196152a5d9e018ec712adde78f5a502d7da Author: Andrea Cosentino <[email protected]> AuthorDate: Thu Jan 9 20:46:34 2020 +0100 Camel-Kubernetes: Fixed tests --- .../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 2743f77..9c6203f 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 @@ -47,7 +47,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); @@ -56,7 +56,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() { @@ -79,8 +79,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 @@ -98,7 +98,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() {
