This is an automated email from the ASF dual-hosted git repository. aldettinger pushed a commit to branch camel-3.11.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-3.11.x by this push: new cf749d0 CAMEL-17007: fix getAlias operation in camel-aws2-lambda cf749d0 is described below commit cf749d0a8b49405775e88580c5dbb82fb8adc8ec Author: aldettinger <aldettin...@gmail.com> AuthorDate: Mon Sep 27 12:06:16 2021 +0200 CAMEL-17007: fix getAlias operation in camel-aws2-lambda --- .../component/aws2/lambda/Lambda2Producer.java | 1 + .../lambda/integration/LambdaCreateGetAliasIT.java | 84 ++++++++++++++++++++++ 2 files changed, 85 insertions(+) diff --git a/components/camel-aws/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Producer.java b/components/camel-aws/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Producer.java index 86e672c..78d8e56 100644 --- a/components/camel-aws/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Producer.java +++ b/components/camel-aws/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Producer.java @@ -684,6 +684,7 @@ public class Lambda2Producer extends DefaultProducer { throw new IllegalArgumentException("Function alias must be specified to get an alias"); } builder.name(aliasName); + request = builder.build(); } try { result = lambdaClient.getAlias(request); diff --git a/components/camel-aws/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/integration/LambdaCreateGetAliasIT.java b/components/camel-aws/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/integration/LambdaCreateGetAliasIT.java new file mode 100644 index 0000000..941a27c --- /dev/null +++ b/components/camel-aws/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/integration/LambdaCreateGetAliasIT.java @@ -0,0 +1,84 @@ +/* + * 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.lambda.integration; + +import java.io.InputStream; +import java.util.HashMap; +import java.util.Map; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.aws2.lambda.Lambda2Constants; +import org.junit.jupiter.api.Test; +import software.amazon.awssdk.services.lambda.model.CreateAliasResponse; +import software.amazon.awssdk.services.lambda.model.CreateFunctionResponse; +import software.amazon.awssdk.services.lambda.model.DeleteFunctionResponse; +import software.amazon.awssdk.services.lambda.model.GetAliasResponse; + +import static org.junit.Assert.assertEquals; + +public class LambdaCreateGetAliasIT extends Aws2LambdaBase { + + @Test + public void createAliasThenGetAliasShouldSucceed() { + Map<String, Object> headers = new HashMap<>(); + headers.put(Lambda2Constants.RUNTIME, "nodejs6.10"); + headers.put(Lambda2Constants.HANDLER, "GetHelloWithName.handler"); + headers.put(Lambda2Constants.ROLE, "arn:aws:iam::643534317684:role/lambda-execution-role"); + ClassLoader classLoader = getClass().getClassLoader(); + InputStream body + = classLoader.getResourceAsStream("org/apache/camel/component/aws2/lambda/function/node/GetHelloWithName.zip"); + CreateFunctionResponse functionCreated + = template.requestBodyAndHeaders("direct:createFunction", body, headers, CreateFunctionResponse.class); + assertEquals("GetHelloWithName", functionCreated.functionName()); + + headers = new HashMap<>(); + headers.put(Lambda2Constants.FUNCTION_ALIAS_NAME, "GetHelloWithNameAlias"); + headers.put(Lambda2Constants.FUNCTION_VERSION, "$LATEST"); + CreateAliasResponse aliasCreated + = template.requestBodyAndHeaders("direct:createAlias", null, headers, CreateAliasResponse.class); + assertEquals("GetHelloWithNameAlias", aliasCreated.name()); + assertEquals("$LATEST", aliasCreated.functionVersion()); + + headers = new HashMap<>(); + headers.put(Lambda2Constants.FUNCTION_ALIAS_NAME, "GetHelloWithNameAlias"); + GetAliasResponse aliasGot = template.requestBodyAndHeaders("direct:getAlias", null, headers, GetAliasResponse.class); + assertEquals("GetHelloWithNameAlias", aliasGot.name()); + assertEquals("$LATEST", aliasGot.functionVersion()); + + template.requestBody("direct:deleteFunction", null, DeleteFunctionResponse.class); + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() { + String awsCreateFunctionEndpoint = "aws2-lambda://GetHelloWithName?operation=createFunction"; + from("direct:createFunction").to(awsCreateFunctionEndpoint); + + String awsCreateAliasEndpoint = "aws2-lambda://GetHelloWithName?operation=createAlias"; + from("direct:createAlias").to(awsCreateAliasEndpoint); + + String awsGetAliasEndpoint = "aws2-lambda://GetHelloWithName?operation=getAlias"; + from("direct:getAlias").to(awsGetAliasEndpoint); + + String awsDeleteFunctionEndpoint = "aws2-lambda://GetHelloWithName?operation=deleteFunction"; + from("direct:deleteFunction").to(awsDeleteFunctionEndpoint); + } + }; + } +}