blob: fb20523a9b712f0ef1b83614c0a4ec9215825372 [file] [log] [blame]
/*
* 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.component.kubernetes.producer;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import io.fabric8.kubernetes.api.model.Node;
import io.fabric8.kubernetes.api.model.NodeBuilder;
import io.fabric8.kubernetes.api.model.NodeListBuilder;
import io.fabric8.kubernetes.api.model.NodeSpec;
import io.fabric8.kubernetes.api.model.NodeSpecBuilder;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import io.fabric8.kubernetes.client.KubernetesClient;
import io.fabric8.kubernetes.client.server.mock.KubernetesServer;
import org.apache.camel.BindToRegistry;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.kubernetes.KubernetesConstants;
import org.apache.camel.component.kubernetes.KubernetesTestSupport;
import org.junit.Rule;
import org.junit.Test;
public class KubernetesNodesProducerTest extends KubernetesTestSupport {
@Rule
public KubernetesServer server = new KubernetesServer();
@BindToRegistry("kubernetesClient")
public KubernetesClient getClient() throws Exception {
return server.getClient();
}
@Test
public void listTest() throws Exception {
server.expect().withPath("/api/v1/nodes").andReturn(200, new NodeListBuilder().addNewItem().and().build()).once();
List<Node> result = template.requestBody("direct:list", "", List.class);
assertEquals(1, result.size());
}
@Test
public void listByLabelsTest() throws Exception {
server.expect().withPath("/api/v1/nodes?labelSelector=" + toUrlEncoded("key1=value1,key2=value2"))
.andReturn(200, new NodeListBuilder().addNewItem().and().addNewItem().and().addNewItem().and().build()).once();
Exchange ex = template.request("direct:listByLabels", new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
Map<String, String> labels = new HashMap<>();
labels.put("key1", "value1");
labels.put("key2", "value2");
exchange.getIn().setHeader(KubernetesConstants.KUBERNETES_NODES_LABELS, labels);
}
});
List<Node> result = ex.getOut().getBody(List.class);
assertEquals(3, result.size());
}
@Test
public void createNodeTest() throws Exception {
ObjectMeta meta = new ObjectMeta();
meta.setName("test");
server.expect().withPath("/api/v1/nodes").andReturn(200, new NodeBuilder().withMetadata(meta).build()).once();
Exchange ex = template.request("direct:createNode", new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
Map<String, String> labels = new HashMap<>();
labels.put("key1", "value1");
labels.put("key2", "value2");
exchange.getIn().setHeader(KubernetesConstants.KUBERNETES_NODES_LABELS, labels);
exchange.getIn().setHeader(KubernetesConstants.KUBERNETES_NODE_NAME, "test");
NodeSpec spec = new NodeSpecBuilder().build();
exchange.getIn().setHeader(KubernetesConstants.KUBERNETES_NODE_SPEC, spec);
}
});
Node result = ex.getOut().getBody(Node.class);
assertEquals("test", result.getMetadata().getName());
}
@Test
public void deleteNode() throws Exception {
Node node1 = new NodeBuilder().withNewMetadata().withName("node1").withNamespace("test").and().build();
server.expect().withPath("/api/v1/nodes/node1").andReturn(200, node1).once();
Exchange ex = template.request("direct:deleteNode", new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
exchange.getIn().setHeader(KubernetesConstants.KUBERNETES_NODE_NAME, "node1");
}
});
boolean nodeDeleted = ex.getOut().getBody(Boolean.class);
assertTrue(nodeDeleted);
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
from("direct:list").toF("kubernetes-nodes:///?kubernetesClient=#kubernetesClient&operation=listNodes");
from("direct:listByLabels").toF("kubernetes-nodes:///?kubernetesClient=#kubernetesClient&operation=listNodesByLabels");
from("direct:createNode").toF("kubernetes-nodes:///?kubernetesClient=#kubernetesClient&operation=createNode");
from("direct:deleteNode").toF("kubernetes-nodes:///?kubernetesClient=#kubernetesClient&operation=deleteNode");
}
};
}
}