This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 5e037d5 CAMEL-16465 - Camel-AWS: Add useDefaultCredentialProvider
option to all the components - ECS Component
5e037d5 is described below
commit 5e037d58046b76a493bef159c292339b2f7007c7
Author: Andrea Cosentino <[email protected]>
AuthorDate: Fri Apr 30 16:23:14 2021 +0200
CAMEL-16465 - Camel-AWS: Add useDefaultCredentialProvider option to all the
components - ECS Component
---
.../component/aws2/ecs/ECS2ClientFactoryTest.java | 51 ++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git
a/components/camel-aws/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ClientFactoryTest.java
b/components/camel-aws/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ClientFactoryTest.java
new file mode 100644
index 0000000..b150cce
--- /dev/null
+++
b/components/camel-aws/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ClientFactoryTest.java
@@ -0,0 +1,51 @@
+/*
+ * 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.ecs;
+
+import org.apache.camel.component.aws2.ecs.client.ECS2ClientFactory;
+import org.apache.camel.component.aws2.ecs.client.ECS2InternalClient;
+import
org.apache.camel.component.aws2.ecs.client.impl.ECS2ClientIAMOptimizedImpl;
+import org.apache.camel.component.aws2.ecs.client.impl.ECS2ClientStandardImpl;
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+public class ECS2ClientFactoryTest {
+
+ @Test
+ public void getStandardECS2ClientDefault() {
+ ECS2Configuration ec2Configuration = new ECS2Configuration();
+ ECS2InternalClient ec2Client =
ECS2ClientFactory.getEcsClient(ec2Configuration);
+ assertTrue(ec2Client instanceof ECS2ClientStandardImpl);
+ }
+
+ @Test
+ public void getStandardECS2Client() {
+ ECS2Configuration ec2Configuration = new ECS2Configuration();
+ ec2Configuration.setUseDefaultCredentialsProvider(false);
+ ECS2InternalClient ec2Client =
ECS2ClientFactory.getEcsClient(ec2Configuration);
+ assertTrue(ec2Client instanceof ECS2ClientStandardImpl);
+ }
+
+ @Test
+ public void getIAMOptimizedECS2Client() {
+ ECS2Configuration ec2Configuration = new ECS2Configuration();
+ ec2Configuration.setUseDefaultCredentialsProvider(true);
+ ECS2InternalClient ec2Client =
ECS2ClientFactory.getEcsClient(ec2Configuration);
+ assertTrue(ec2Client instanceof ECS2ClientIAMOptimizedImpl);
+ }
+}