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
The following commit(s) were added to refs/heads/master by this push: new 5d08b6e Camel-AWS2-IAM: Adding tests with localstack and Testcontainers 5d08b6e is described below commit 5d08b6e9ec09db830323869ad60bb3019692088e Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Sep 14 18:40:12 2020 +0200 Camel-AWS2-IAM: Adding tests with localstack and Testcontainers --- components/camel-aws2-iam/pom.xml | 70 ++++++++++++++++++++ .../aws2/iam/localstack/Aws2IAMBaseTest.java | 76 ++++++++++++++++++++++ .../localstack/IAMCreateUserLocalstackTest.java | 65 ++++++++++++++++++ 3 files changed, 211 insertions(+) diff --git a/components/camel-aws2-iam/pom.xml b/components/camel-aws2-iam/pom.xml index 9ded59b..47c2342 100644 --- a/components/camel-aws2-iam/pom.xml +++ b/components/camel-aws2-iam/pom.xml @@ -62,5 +62,75 @@ <artifactId>log4j-slf4j-impl</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-testcontainers-junit5</artifactId> + <scope>test</scope> + </dependency> </dependencies> + + <profiles> + <profile> + <id>aws2-iam-skip-tests</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>true</skipTests> + </configuration> + </plugin> + </plugins> + </build> + </profile> + + <!-- activate test if the docker socket file is accessible --> + <profile> + <id>aws2-iam-tests-docker-file</id> + <activation> + <file> + <exists>/var/run/docker.sock</exists> + </file> + </activation> + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>${skipTests}</skipTests> + <systemPropertyVariables> + <visibleassertions.silence>true</visibleassertions.silence> + </systemPropertyVariables> + </configuration> + </plugin> + </plugins> + </build> + </profile> + + <!-- activate test if the DOCKER_HOST env var is set --> + <profile> + <id>aws2-iam-tests-docker-env</id> + <activation> + <property> + <name>env.DOCKER_HOST</name> + </property> + </activation> + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>${skipTests}</skipTests> + <systemPropertyVariables> + <visibleassertions.silence>true</visibleassertions.silence> + </systemPropertyVariables> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> </project> diff --git a/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/localstack/Aws2IAMBaseTest.java b/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/localstack/Aws2IAMBaseTest.java new file mode 100644 index 0000000..b651579 --- /dev/null +++ b/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/localstack/Aws2IAMBaseTest.java @@ -0,0 +1,76 @@ +/* + * 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.iam.localstack; + +import java.net.URI; + +import org.apache.camel.CamelContext; +import org.apache.camel.component.aws2.iam.IAM2Component; +import org.apache.camel.test.testcontainers.junit5.ContainerAwareTestSupport; +import org.apache.camel.test.testcontainers.junit5.Wait; +import org.junit.jupiter.api.TestInstance; +import org.testcontainers.containers.GenericContainer; +import software.amazon.awssdk.auth.credentials.AwsBasicCredentials; +import software.amazon.awssdk.auth.credentials.StaticCredentialsProvider; +import software.amazon.awssdk.regions.Region; +import software.amazon.awssdk.services.iam.IamClient; + +@TestInstance(TestInstance.Lifecycle.PER_CLASS) +public class Aws2IAMBaseTest extends ContainerAwareTestSupport { + + public static final String CONTAINER_IMAGE = "localstack/localstack:0.11.4"; + public static final String CONTAINER_NAME = "iam"; + + @Override + protected GenericContainer<?> createContainer() { + return localstackContainer(); + } + + public static GenericContainer localstackContainer() { + return new GenericContainer(CONTAINER_IMAGE) + .withNetworkAliases(CONTAINER_NAME) + .withEnv("SERVICES", "iam") + .withExposedPorts(4566) + .waitingFor(Wait.forListeningPort()) + .waitingFor(Wait.forLogMessageContaining("Ready.", 1)); + } + + public String getS3Url() { + return String.format( + "%s:%d", + getContainerHost(CONTAINER_NAME), + getContainerPort(CONTAINER_NAME, 4566)); + } + + public IamClient getIamClient() { + IamClient s3Client = IamClient + .builder() + .endpointOverride(URI.create("http://" + getS3Url())) + .credentialsProvider(StaticCredentialsProvider.create(AwsBasicCredentials.create("xxx", "yyy"))) + .region(Region.EU_WEST_1) + .build(); + return s3Client; + } + + @Override + protected CamelContext createCamelContext() throws Exception { + CamelContext context = super.createCamelContext(); + IAM2Component iam = context.getComponent("aws2-iam", IAM2Component.class); + iam.getConfiguration().setIamClient(getIamClient()); + return context; + } +} diff --git a/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/localstack/IAMCreateUserLocalstackTest.java b/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/localstack/IAMCreateUserLocalstackTest.java new file mode 100644 index 0000000..acc6fa4 --- /dev/null +++ b/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/localstack/IAMCreateUserLocalstackTest.java @@ -0,0 +1,65 @@ +/* + * 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.iam.localstack; + +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.iam.IAM2Constants; +import org.apache.camel.component.aws2.iam.IAM2Operations; +import org.apache.camel.component.mock.MockEndpoint; +import org.junit.jupiter.api.Test; +import software.amazon.awssdk.services.iam.model.CreateUserResponse; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +public class IAMCreateUserLocalstackTest extends Aws2IAMBaseTest { + + @EndpointInject("mock:result") + private MockEndpoint mock; + + @Test + public void iamCreateUserTest() throws Exception { + + mock.expectedMessageCount(1); + Exchange exchange = template.request("direct:createUser", new Processor() { + @Override + public void process(Exchange exchange) throws Exception { + exchange.getIn().setHeader(IAM2Constants.OPERATION, IAM2Operations.createUser); + exchange.getIn().setHeader(IAM2Constants.USERNAME, "test"); + } + }); + + assertMockEndpointsSatisfied(); + + CreateUserResponse resultGet = (CreateUserResponse) exchange.getIn().getBody(); + assertEquals("test", resultGet.user().userName()); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("direct:createUser").to("aws2-iam://test?operation=createUser") + .to("mock:result"); + + } + }; + } +}