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/09/15 07:16:11 UTC

[camel] branch master updated (228ee25 -> 5bb1e4a)

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 228ee25  disruptor: expose information about the class that DisruptorWaitStrategy wraps
     new dde2b35  Camel-AWS2-IAM: Adding more tests with localstack and Testcontainers
     new 5bb1e4a  Camel-AWS2-IAM: Adding more tests with localstack and Testcontainers

The 2 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:
 .../camel/component/aws2/iam/IAM2Producer.java     |  2 +-
 ...st.java => IAMListAccessKeyLocalstackTest.java} | 27 +++++++++++++++-------
 2 files changed, 20 insertions(+), 9 deletions(-)
 copy components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/localstack/{IAMCreateUserLocalstackTest.java => IAMListAccessKeyLocalstackTest.java} (65%)


[camel] 02/02: Camel-AWS2-IAM: Adding more tests with localstack and Testcontainers

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 5bb1e4abb4720b4f4e12ef1d30c6851dbd32e8c8
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Sep 15 09:15:41 2020 +0200

    Camel-AWS2-IAM: Adding more tests with localstack and Testcontainers
---
 .../java/org/apache/camel/component/aws2/iam/IAM2Producer.java    | 2 +-
 .../aws2/iam/localstack/IAMListAccessKeyLocalstackTest.java       | 8 +-------
 2 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/components/camel-aws2-iam/src/main/java/org/apache/camel/component/aws2/iam/IAM2Producer.java b/components/camel-aws2-iam/src/main/java/org/apache/camel/component/aws2/iam/IAM2Producer.java
index 80dbe7f..9171065 100644
--- a/components/camel-aws2-iam/src/main/java/org/apache/camel/component/aws2/iam/IAM2Producer.java
+++ b/components/camel-aws2-iam/src/main/java/org/apache/camel/component/aws2/iam/IAM2Producer.java
@@ -156,7 +156,7 @@ public class IAM2Producer extends DefaultProducer {
         } else {
             ListAccessKeysResponse response;
             try {
-                response = iamClient.listAccessKeys();
+                response = iamClient.listAccessKeys(ListAccessKeysRequest.builder().build());
             } catch (AwsServiceException ase) {
                 LOG.trace("List Access Keys command returned the error code {}", ase.getMessage());
                 throw ase;
diff --git a/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/localstack/IAMListAccessKeyLocalstackTest.java b/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/localstack/IAMListAccessKeyLocalstackTest.java
index 3b7f13a..3a30b7e 100644
--- a/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/localstack/IAMListAccessKeyLocalstackTest.java
+++ b/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/localstack/IAMListAccessKeyLocalstackTest.java
@@ -24,13 +24,8 @@ 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.CreateUserRequest;
-import software.amazon.awssdk.services.iam.model.CreateUserResponse;
 import software.amazon.awssdk.services.iam.model.ListAccessKeysRequest;
 
-import static org.junit.jupiter.api.Assertions.assertEquals;
-
 public class IAMListAccessKeyLocalstackTest extends Aws2IAMBaseTest {
 
     @EndpointInject("mock:result")
@@ -73,8 +68,7 @@ public class IAMListAccessKeyLocalstackTest extends Aws2IAMBaseTest {
                 from("direct:createUser").to("aws2-iam://test?operation=createUser");
                 from("direct:createAccessKey").to("aws2-iam://test?operation=createAccessKey");
                 from("direct:listKeys").to("aws2-iam://test?operation=listAccessKeys&pojoRequest=true")
-                         .to("mock:result");
-
+                        .to("mock:result");
 
             }
         };


[camel] 01/02: Camel-AWS2-IAM: Adding more tests with localstack and Testcontainers

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 dde2b35f93bff5f9d4925c7842189810c056c5c5
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Sep 15 09:01:58 2020 +0200

    Camel-AWS2-IAM: Adding more tests with localstack and Testcontainers
---
 .../localstack/IAMListAccessKeyLocalstackTest.java | 82 ++++++++++++++++++++++
 1 file changed, 82 insertions(+)

diff --git a/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/localstack/IAMListAccessKeyLocalstackTest.java b/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/localstack/IAMListAccessKeyLocalstackTest.java
new file mode 100644
index 0000000..3b7f13a
--- /dev/null
+++ b/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/localstack/IAMListAccessKeyLocalstackTest.java
@@ -0,0 +1,82 @@
+/*
+ * 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.CreateUserRequest;
+import software.amazon.awssdk.services.iam.model.CreateUserResponse;
+import software.amazon.awssdk.services.iam.model.ListAccessKeysRequest;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+public class IAMListAccessKeyLocalstackTest 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");
+            }
+        });
+        exchange = template.request("direct:createAccessKey", new Processor() {
+            @Override
+            public void process(Exchange exchange) throws Exception {
+                exchange.getIn().setHeader(IAM2Constants.OPERATION, IAM2Operations.createAccessKey);
+                exchange.getIn().setHeader(IAM2Constants.USERNAME, "test");
+            }
+        });
+        exchange = template.request("direct:listKeys", new Processor() {
+            @Override
+            public void process(Exchange exchange) throws Exception {
+                exchange.getIn().setHeader(IAM2Constants.OPERATION, IAM2Operations.listAccessKeys);
+                exchange.getIn().setBody(ListAccessKeysRequest.builder().userName("test").build());
+            }
+        });
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                from("direct:createUser").to("aws2-iam://test?operation=createUser");
+                from("direct:createAccessKey").to("aws2-iam://test?operation=createAccessKey");
+                from("direct:listKeys").to("aws2-iam://test?operation=listAccessKeys&pojoRequest=true")
+                         .to("mock:result");
+
+
+            }
+        };
+    }
+}