You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/10/01 12:50:26 UTC

[camel] branch aws2-lambda-localstack created (now ab3a6a4)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch aws2-lambda-localstack
in repository https://gitbox.apache.org/repos/asf/camel.git.


      at ab3a6a4  Camel-AWS2-Lambda: Added localstack test for GetFunction

This branch includes the following new commits:

     new ab3a6a4  Camel-AWS2-Lambda: Added localstack test for GetFunction

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel] 01/01: Camel-AWS2-Lambda: Added localstack test for GetFunction

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch aws2-lambda-localstack
in repository https://gitbox.apache.org/repos/asf/camel.git

commit ab3a6a44f9d750c71ecae0ddbc85c26fd28ceb4f
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Oct 1 12:42:54 2020 +0200

    Camel-AWS2-Lambda: Added localstack test for GetFunction
---
 .../LambdaGetFunctionLocalstackTest.java           | 94 ++++++++++++++++++++++
 1 file changed, 94 insertions(+)

diff --git a/components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/LambdaGetFunctionLocalstackTest.java b/components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/LambdaGetFunctionLocalstackTest.java
new file mode 100644
index 0000000..0910850
--- /dev/null
+++ b/components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/LambdaGetFunctionLocalstackTest.java
@@ -0,0 +1,94 @@
+/*
+ * 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.localstack;
+
+import java.io.File;
+import java.io.FileInputStream;
+
+import org.apache.camel.EndpointInject;
+import org.apache.camel.Exchange;
+import org.apache.camel.ExchangePattern;
+import org.apache.camel.Processor;
+import org.apache.camel.ProducerTemplate;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.aws2.lambda.Lambda2Constants;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.junit.jupiter.api.Test;
+import software.amazon.awssdk.services.lambda.model.GetFunctionResponse;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+
+public class LambdaGetFunctionLocalstackTest extends Aws2LambdaBaseTest {
+
+    @EndpointInject
+    private ProducerTemplate template;
+
+    @EndpointInject("mock:result")
+    private MockEndpoint result;
+
+    @Test
+    public void sendIn() throws Exception {
+        result.expectedMessageCount(1);
+
+        template.send("direct:createFunction", ExchangePattern.InOut, new Processor() {
+            @Override
+            public void process(Exchange exchange) throws Exception {
+                exchange.getIn().setHeader(Lambda2Constants.RUNTIME, "nodejs6.10");
+                exchange.getIn().setHeader(Lambda2Constants.HANDLER, "GetHelloWithName.handler");
+                exchange.getIn().setHeader(Lambda2Constants.DESCRIPTION, "Hello with node.js on Lambda");
+                exchange.getIn().setHeader(Lambda2Constants.ROLE,
+                        "arn:aws:iam::643534317684:role/lambda-execution-role");
+
+                ClassLoader classLoader = getClass().getClassLoader();
+                File file = new File(
+                        classLoader
+                                .getResource("org/apache/camel/component/aws2/lambda/function/node/GetHelloWithName.zip")
+                                .getFile());
+                FileInputStream inputStream = new FileInputStream(file);
+                exchange.getIn().setBody(inputStream);
+            }
+        });
+
+        template.send("direct:getFunction", ExchangePattern.InOut, new Processor() {
+            @Override
+            public void process(Exchange exchange) throws Exception {
+
+            }
+        });
+
+        assertMockEndpointsSatisfied();
+        GetFunctionResponse resp = result.getExchanges().get(0).getIn().getBody(GetFunctionResponse.class);
+        assertEquals("GetHelloWithName", resp.configuration().functionName());
+        assertEquals("Hello with node.js on Lambda", resp.configuration().description());
+        assertNotNull(resp.configuration().functionArn());
+        assertNotNull(resp.configuration().codeSha256());
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                String awsEndpoint = "aws2-lambda://GetHelloWithName?operation=createFunction";
+                String getFunction = "aws2-lambda://GetHelloWithName?operation=getFunction";
+                from("direct:createFunction").to(awsEndpoint);
+                from("direct:getFunction").to(getFunction).to("mock:result");
+            }
+        };
+    }
+}