blob: 0f02c8af91b4eb52908bbfb4f915c2a07dccc3a2 [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.aws2.ecs;
import org.apache.camel.BindToRegistry;
import org.apache.camel.EndpointInject;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.aws2.sts.STS2Constants;
import org.apache.camel.component.aws2.sts.STS2Operations;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.test.junit5.CamelTestSupport;
import org.junit.jupiter.api.Test;
import software.amazon.awssdk.services.ecs.model.CreateClusterResponse;
import software.amazon.awssdk.services.ecs.model.DeleteClusterResponse;
import software.amazon.awssdk.services.ecs.model.DescribeClustersResponse;
import software.amazon.awssdk.services.ecs.model.ListClustersRequest;
import software.amazon.awssdk.services.ecs.model.ListClustersResponse;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class ECS2ProducerTest extends CamelTestSupport {
@BindToRegistry("amazonEcsClient")
AmazonECSClientMock clientMock = new AmazonECSClientMock();
@EndpointInject("mock:result")
private MockEndpoint mock;
@Test
public void ecsListClustersTest() throws Exception {
mock.expectedMessageCount(1);
Exchange exchange = template.request("direct:listClusters", new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
exchange.getIn().setHeader(STS2Constants.OPERATION, STS2Operations.listClusters);
}
});
assertMockEndpointsSatisfied();
ListClustersResponse resultGet = (ListClustersResponse)exchange.getIn().getBody();
assertEquals(1, resultGet.clusterArns().size());
assertEquals("Test", resultGet.clusterArns().get(0));
}
@Test
public void ecsListClustersPojoTest() throws Exception {
mock.expectedMessageCount(1);
Exchange exchange = template.request("direct:listClustersPojo", new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
exchange.getIn().setHeader(STS2Constants.OPERATION, STS2Operations.listClusters);
exchange.getIn().setBody(ListClustersRequest.builder().maxResults(10).build());
}
});
assertMockEndpointsSatisfied();
ListClustersResponse resultGet = (ListClustersResponse)exchange.getIn().getBody();
assertEquals(1, resultGet.clusterArns().size());
assertEquals("Test", resultGet.clusterArns().get(0));
}
@Test
public void ecsCreateClusterTest() throws Exception {
mock.expectedMessageCount(1);
Exchange exchange = template.request("direct:createCluster", new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
exchange.getIn().setHeader(STS2Constants.OPERATION, STS2Operations.createCluster);
exchange.getIn().setHeader(STS2Constants.CLUSTER_NAME, "Test");
}
});
assertMockEndpointsSatisfied();
CreateClusterResponse resultGet = (CreateClusterResponse)exchange.getIn().getBody();
assertEquals("Test", resultGet.cluster().clusterName());
}
@Test
public void eksDescribeClusterTest() throws Exception {
mock.expectedMessageCount(1);
Exchange exchange = template.request("direct:describeCluster", new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
exchange.getIn().setHeader(STS2Constants.OPERATION, STS2Operations.describeCluster);
exchange.getIn().setHeader(STS2Constants.CLUSTER_NAME, "Test");
}
});
assertMockEndpointsSatisfied();
DescribeClustersResponse resultGet = exchange.getIn().getBody(DescribeClustersResponse.class);
assertEquals("Test", resultGet.clusters().get(0).clusterName());
}
@Test
public void eksDeleteClusterTest() throws Exception {
mock.expectedMessageCount(1);
Exchange exchange = template.request("direct:deleteCluster", new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
exchange.getIn().setHeader(STS2Constants.OPERATION, STS2Operations.deleteCluster);
exchange.getIn().setHeader(STS2Constants.CLUSTER_NAME, "Test");
}
});
assertMockEndpointsSatisfied();
DeleteClusterResponse resultGet = exchange.getIn().getBody(DeleteClusterResponse.class);
assertEquals("Test", resultGet.cluster().clusterName());
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
from("direct:listClusters").to("aws2-ecs://test?ecsClient=#amazonEcsClient&operation=listClusters").to("mock:result");
from("direct:listClustersPojo").to("aws2-ecs://test?ecsClient=#amazonEcsClient&operation=listClusters&pojoRequest=true").to("mock:result");
from("direct:createCluster").to("aws2-ecs://test?ecsClient=#amazonEcsClient&operation=createCluster").to("mock:result");
from("direct:deleteCluster").to("aws2-ecs://test?ecsClient=#amazonEcsClient&operation=deleteCluster").to("mock:result");
from("direct:describeCluster").to("aws2-ecs://test?ecsClient=#amazonEcsClient&operation=describeCluster").to("mock:result");
}
};
}
}