This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-karaf.git
The following commit(s) were added to refs/heads/main by this push: new 9e349b1d Ref #396: Added camel-aws2-sts integration test (#397) 9e349b1d is described below commit 9e349b1d581bbb9910678e2d2ca81e29db4b2d45 Author: lopushen <lopus...@gmail.com> AuthorDate: Fri Jun 28 11:42:12 2024 +0300 Ref #396: Added camel-aws2-sts integration test (#397) --- tests/features/camel-aws2-sts/pom.xml | 46 +++++++++++++ .../camel/test/CamelAws2StsRouteSupplier.java | 64 ++++++++++++++++++ .../karaf/camel/itest/CamelAws2StsITest.java | 78 ++++++++++++++++++++++ tests/features/pom.xml | 1 + 4 files changed, 189 insertions(+) diff --git a/tests/features/camel-aws2-sts/pom.xml b/tests/features/camel-aws2-sts/pom.xml new file mode 100644 index 00000000..6105d973 --- /dev/null +++ b/tests/features/camel-aws2-sts/pom.xml @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + 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. + +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.camel.karaf</groupId> + <artifactId>camel-karaf-features-test</artifactId> + <version>4.6.0-SNAPSHOT</version> + </parent> + + <artifactId>camel-aws2-sts-test</artifactId> + <name>Apache Camel :: Karaf :: Tests :: Features :: AWS2 STS</name> + + <dependencies> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-aws2-sts</artifactId> + <version>${camel-version}</version> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>localstack</artifactId> + <version>${testcontainers-version}</version> + <scope>test</scope> + </dependency> + </dependencies> +</project> \ No newline at end of file diff --git a/tests/features/camel-aws2-sts/src/main/java/org/apache/karaf/camel/test/CamelAws2StsRouteSupplier.java b/tests/features/camel-aws2-sts/src/main/java/org/apache/karaf/camel/test/CamelAws2StsRouteSupplier.java new file mode 100644 index 00000000..341cbeb0 --- /dev/null +++ b/tests/features/camel-aws2-sts/src/main/java/org/apache/karaf/camel/test/CamelAws2StsRouteSupplier.java @@ -0,0 +1,64 @@ +/* + * 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.karaf.camel.test; + +import org.apache.camel.CamelContext; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.aws2.sts.STS2Component; +import org.apache.camel.component.aws2.sts.STS2Configuration; +import org.apache.camel.component.aws2.sts.STS2Constants; +import org.apache.camel.model.RouteDefinition; +import org.apache.karaf.camel.itests.AbstractCamelSingleFeatureResultMockBasedRouteSupplier; +import org.apache.karaf.camel.itests.CamelRouteSupplier; +import org.osgi.service.component.annotations.Component; + +@Component(name = "karaf-camel-aws2-sts-test", immediate = true, service = CamelRouteSupplier.class) +public class CamelAws2StsRouteSupplier extends AbstractCamelSingleFeatureResultMockBasedRouteSupplier { + + private static final String HOST = System.getProperty("localstack.sts.host"); + private static final String PORT = System.getProperty("localstack.sts.port"); + private static final String REGION = System.getProperty("localstack.sts.region"); + private static final String ACCESS_KEY = System.getProperty("localstack.sts.accessKey"); + private static final String SECRET_KEY = System.getProperty("localstack.sts.secretKey"); + private static final String COMPONENT_NAME = "aws2-sts"; + + @Override + public void configure(CamelContext camelContext) { + final STS2Component aws2StsComponent = new STS2Component(); + final STS2Configuration configuration = new STS2Configuration(); + configuration.setAccessKey(ACCESS_KEY); + configuration.setSecretKey(SECRET_KEY); + configuration.setRegion(REGION); + configuration.setOverrideEndpoint(true); + configuration.setUriEndpointOverride(String.format("http://%s:%s", HOST, PORT)); + aws2StsComponent.setConfiguration(configuration); + camelContext.addComponent(COMPONENT_NAME, aws2StsComponent); + } + + @Override + protected void configureProducer(RouteBuilder builder, RouteDefinition producerRoute) { + configureConsumer(producerRoute.setHeader(STS2Constants.ROLE_ARN, builder.constant("arn:123")) + .setHeader(STS2Constants.ROLE_SESSION_NAME, builder.constant("groot")) + .to("aws2-sts://test?operation=assumeRole") + .log("Role assumed successfully: ${body}") + .setBody(builder.constant("OK"))); + } + + @Override + protected boolean consumerEnabled() { + return false; + } +} \ No newline at end of file diff --git a/tests/features/camel-aws2-sts/src/test/java/org/apache/karaf/camel/itest/CamelAws2StsITest.java b/tests/features/camel-aws2-sts/src/test/java/org/apache/karaf/camel/itest/CamelAws2StsITest.java new file mode 100644 index 00000000..b872ff0a --- /dev/null +++ b/tests/features/camel-aws2-sts/src/test/java/org/apache/karaf/camel/itest/CamelAws2StsITest.java @@ -0,0 +1,78 @@ +/* + * Licensed 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.karaf.camel.itest; + +import org.apache.camel.component.mock.MockEndpoint; + +import org.apache.karaf.camel.itests.AbstractCamelSingleFeatureResultMockBasedRouteITest; +import org.apache.karaf.camel.itests.CamelKarafTestHint; +import org.apache.karaf.camel.itests.GenericContainerResource; +import org.apache.karaf.camel.itests.PaxExamWithExternalResource; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy; +import org.ops4j.pax.exam.spi.reactors.PerClass; +import org.testcontainers.containers.localstack.LocalStackContainer; +import org.testcontainers.containers.wait.strategy.Wait; +import org.testcontainers.utility.DockerImageName; + +@CamelKarafTestHint(externalResourceProvider = CamelAws2StsITest.ExternalResourceProviders.class) +@RunWith(PaxExamWithExternalResource.class) +@ExamReactorStrategy(PerClass.class) +public class CamelAws2StsITest extends AbstractCamelSingleFeatureResultMockBasedRouteITest { + + @Override + public void configureMock(MockEndpoint mock) { + mock.expectedBodiesReceived("OK"); + } + + @Test + public void testResultMock() throws Exception { + assertMockEndpointsSatisfied(); + } + + public static final class ExternalResourceProviders { + + private static final int LOCALSTACK_ORIGINAL_PORT = 4566; + private static final String ACCESS_KEY = "test"; + private static final String SECRET_KEY = "test"; + private static final String REGION = "us-east-1"; + + public static GenericContainerResource<LocalStackContainer> createAws2StsContainer() { + + final LocalStackContainer localStackContainer = + new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.4.0")).withServices( + LocalStackContainer.Service.STS).waitingFor(Wait.forLogMessage(".*Ready\\.\n", 1)); + + return new GenericContainerResource<>(localStackContainer, resource -> { + try { + localStackContainer.execInContainer("aws", "configure", "set", "aws_access_key_id", ACCESS_KEY, "--profile", + "localstack"); + localStackContainer.execInContainer("aws", "configure", "set", "aws_secret_access_key", SECRET_KEY, + "--profile", "localstack"); + localStackContainer.execInContainer("aws", "configure", "set", "region", REGION, "--profile", "localstack"); + } catch (Exception e) { + throw new RuntimeException(e); + } + + resource.setProperty("localstack.sts.host", localStackContainer.getHost()); + resource.setProperty("localstack.sts.port", + Integer.toString(localStackContainer.getMappedPort(LOCALSTACK_ORIGINAL_PORT))); + resource.setProperty("localstack.sts.accessKey", ACCESS_KEY); + resource.setProperty("localstack.sts.secretKey", SECRET_KEY); + resource.setProperty("localstack.sts.region", REGION); + }); + } + } +} \ No newline at end of file diff --git a/tests/features/pom.xml b/tests/features/pom.xml index 18861ab6..7974e81c 100644 --- a/tests/features/pom.xml +++ b/tests/features/pom.xml @@ -44,6 +44,7 @@ <module>camel-aws2-ses</module> <module>camel-aws2-sns</module> <module>camel-aws2-sqs</module> + <module>camel-aws2-sts</module> <module>camel-azure-storage-blob</module> <module>camel-core</module> <module>camel-ehcache</module>