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/02 08:04:04 UTC

[camel] branch master updated (3f2b96c -> f7180d2)

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

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 3f2b96c  Sync Properties
     new 6b4b416  Camel-AWS2-Lambda: Added localstack test for DeleteFunction
     new f896156a Camel-AWS2-Lambda: Added localstack test for ListFunctions
     new f7180d2  Camel-AWS2-Lambda: Added localstack test for PublishVersion

The 3 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.


Summary of changes:
 ...ava => LambdaDeleteFunctionLocalstackTest.java} | 25 +++++++++++++---------
 ...java => LambdaListFunctionsLocalstackTest.java} | 21 +++++++++---------
 ...ava => LambdaPublishVersionLocalstackTest.java} | 23 ++++++++++----------
 3 files changed, 37 insertions(+), 32 deletions(-)
 copy components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/{LambdaCreateFunctionLocalstackTest.java => LambdaDeleteFunctionLocalstackTest.java} (79%)
 copy components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/{LambdaGetFunctionLocalstackTest.java => LambdaListFunctionsLocalstackTest.java} (78%)
 copy components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/{LambdaGetFunctionLocalstackTest.java => LambdaPublishVersionLocalstackTest.java} (80%)


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

Posted by ac...@apache.org.
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

commit 6b4b416398b2b99cd76c6a3e70cc8d67d5e4b809
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Oct 2 08:05:30 2020 +0200

    Camel-AWS2-Lambda: Added localstack test for DeleteFunction
---
 .../LambdaDeleteFunctionLocalstackTest.java        | 90 ++++++++++++++++++++++
 1 file changed, 90 insertions(+)

diff --git a/components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/LambdaDeleteFunctionLocalstackTest.java b/components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/LambdaDeleteFunctionLocalstackTest.java
new file mode 100644
index 0000000..ddfee2e
--- /dev/null
+++ b/components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/LambdaDeleteFunctionLocalstackTest.java
@@ -0,0 +1,90 @@
+/*
+ * 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.DeleteFunctionResponse;
+
+import static org.junit.Assert.assertTrue;
+
+public class LambdaDeleteFunctionLocalstackTest 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:deleteFunction", ExchangePattern.InOut, new Processor() {
+            @Override
+            public void process(Exchange exchange) throws Exception {
+
+            }
+        });
+
+        assertMockEndpointsSatisfied();
+        DeleteFunctionResponse resp = result.getExchanges().get(0).getIn().getBody(DeleteFunctionResponse.class);
+        assertTrue(resp.sdkHttpResponse().isSuccessful());
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                String awsEndpoint = "aws2-lambda://GetHelloWithName?operation=createFunction";
+                String deleteFunction = "aws2-lambda://GetHelloWithName?operation=deleteFunction";
+                from("direct:createFunction").to(awsEndpoint);
+                from("direct:deleteFunction").to(deleteFunction).to("mock:result");
+            }
+        };
+    }
+}


[camel] 03/03: Camel-AWS2-Lambda: Added localstack test for PublishVersion

Posted by ac...@apache.org.
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

commit f7180d2eeb401770ed28aa91bc09e9363a0f0223
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Oct 2 08:52:27 2020 +0200

    Camel-AWS2-Lambda: Added localstack test for PublishVersion
---
 .../LambdaPublishVersionLocalstackTest.java        | 93 ++++++++++++++++++++++
 1 file changed, 93 insertions(+)

diff --git a/components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/LambdaPublishVersionLocalstackTest.java b/components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/LambdaPublishVersionLocalstackTest.java
new file mode 100644
index 0000000..b8be1f6
--- /dev/null
+++ b/components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/LambdaPublishVersionLocalstackTest.java
@@ -0,0 +1,93 @@
+/*
+ * 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.PublishVersionResponse;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+
+public class LambdaPublishVersionLocalstackTest 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:publishVersion", ExchangePattern.InOut, new Processor() {
+            @Override
+            public void process(Exchange exchange) throws Exception {
+                exchange.getIn().setHeader(Lambda2Constants.VERSION_DESCRIPTION, "This is my description");
+            }
+        });
+        assertMockEndpointsSatisfied();
+
+        PublishVersionResponse resp = result.getExchanges().get(0).getMessage().getBody(PublishVersionResponse.class);
+        assertNotNull(resp);
+        assertEquals("GetHelloWithName", resp.functionName());
+        assertEquals("1", resp.version());
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                String awsEndpoint = "aws2-lambda://GetHelloWithName?operation=createFunction";
+                String publishVersion = "aws2-lambda://GetHelloWithName?operation=publishVersion";
+                from("direct:createFunction").to(awsEndpoint);
+                from("direct:publishVersion").to(publishVersion).to("mock:result");
+            }
+        };
+    }
+}


[camel] 02/03: Camel-AWS2-Lambda: Added localstack test for ListFunctions

Posted by ac...@apache.org.
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

commit f896156a32442ba30b26dbe2f516193fd8b27fe5
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Oct 2 08:23:19 2020 +0200

    Camel-AWS2-Lambda: Added localstack test for ListFunctions
---
 .../LambdaListFunctionsLocalstackTest.java         | 95 ++++++++++++++++++++++
 1 file changed, 95 insertions(+)

diff --git a/components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/LambdaListFunctionsLocalstackTest.java b/components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/LambdaListFunctionsLocalstackTest.java
new file mode 100644
index 0000000..0bbd428
--- /dev/null
+++ b/components/camel-aws2-lambda/src/test/java/org/apache/camel/component/aws2/lambda/localstack/LambdaListFunctionsLocalstackTest.java
@@ -0,0 +1,95 @@
+/*
+ * 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.ListFunctionsResponse;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+
+public class LambdaListFunctionsLocalstackTest 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:listFunction", ExchangePattern.InOut, new Processor() {
+            @Override
+            public void process(Exchange exchange) throws Exception {
+
+            }
+        });
+
+        assertMockEndpointsSatisfied();
+        ListFunctionsResponse resp = result.getExchanges().get(0).getIn().getBody(ListFunctionsResponse.class);
+        assertEquals(1, resp.functions().size());
+        assertEquals("GetHelloWithName", resp.functions().get(0).functionName());
+        assertEquals("Hello with node.js on Lambda", resp.functions().get(0).description());
+        assertNotNull(resp.functions().get(0).functionArn());
+        assertNotNull(resp.functions().get(0).codeSha256());
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                String awsEndpoint = "aws2-lambda://GetHelloWithName?operation=createFunction";
+                String listFunction = "aws2-lambda://GetHelloWithName?operation=listFunctions";
+                from("direct:createFunction").to(awsEndpoint);
+                from("direct:listFunction").to(listFunction).to("mock:result");
+            }
+        };
+    }
+}