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
commit 43522a90a3c7f2687afe79b83dfb5d6995695029 Author: Andrea Cosentino <[email protected]> AuthorDate: Fri May 14 07:55:27 2021 +0200 CAMEL-16465 - Camel-AWS: Add useDefaultCredentialProvider option to all the components - IAM Component --- .../component/aws2/iam/IAMClientFactoryTest.java | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/components/camel-aws/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/IAMClientFactoryTest.java b/components/camel-aws/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/IAMClientFactoryTest.java new file mode 100644 index 0000000..1d055d1 --- /dev/null +++ b/components/camel-aws/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/IAMClientFactoryTest.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.iam; + +import org.apache.camel.component.aws2.iam.client.IAM2ClientFactory; +import org.apache.camel.component.aws2.iam.client.IAM2InternalClient; +import org.apache.camel.component.aws2.iam.client.impl.IAM2ClientOptimizedImpl; +import org.apache.camel.component.aws2.iam.client.impl.IAM2ClientStandardImpl; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertTrue; + +public class IAMClientFactoryTest { + + @Test + public void getStandardEIamClientDefault() { + IAM2Configuration iam2Configuration = new IAM2Configuration(); + IAM2InternalClient iamClient = IAM2ClientFactory.getIamClient(iam2Configuration); + assertTrue(iamClient instanceof IAM2ClientStandardImpl); + } + + @Test + public void getStandardIamClient() { + IAM2Configuration iam2Configuration = new IAM2Configuration(); + iam2Configuration.setUseDefaultCredentialsProvider(false); + IAM2InternalClient iamClient = IAM2ClientFactory.getIamClient(iam2Configuration); + assertTrue(iamClient instanceof IAM2ClientStandardImpl); + } + + @Test + public void getIAMOptimizedIamClient() { + IAM2Configuration iam2Configuration = new IAM2Configuration(); + iam2Configuration.setUseDefaultCredentialsProvider(true); + IAM2InternalClient iamClient = IAM2ClientFactory.getIamClient(iam2Configuration); + assertTrue(iamClient instanceof IAM2ClientOptimizedImpl); + } +}
