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 576ce4e7e3c231f32aad6cc9d20449a8bd3c290b Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Jun 1 08:09:12 2021 +0200 CAMEL-16465 - Camel-AWS: Add useDefaultCredentialProvider option to all the components - Secrets Manager Component --- .../SecretsManagerClientFactoryTest.java | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/components/camel-aws/camel-aws-secrets-manager/src/test/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientFactoryTest.java b/components/camel-aws/camel-aws-secrets-manager/src/test/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientFactoryTest.java new file mode 100644 index 0000000..ef4407f --- /dev/null +++ b/components/camel-aws/camel-aws-secrets-manager/src/test/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientFactoryTest.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.aws.secretsmanager; + +import org.apache.camel.component.aws.secretsmanager.client.SecretsManagerClientFactory; +import org.apache.camel.component.aws.secretsmanager.client.SecretsManagerInternalClient; +import org.apache.camel.component.aws.secretsmanager.client.impl.SecretsManagerClientIAMOptimized; +import org.apache.camel.component.aws.secretsmanager.client.impl.SecretsManagerClientStandardImpl; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertTrue; + +public class SecretsManagerClientFactoryTest { + + @Test + public void getStandardSecretsManagerClientDefault() { + SecretsManagerConfiguration secretsManagerConfiguration = new SecretsManagerConfiguration(); + SecretsManagerInternalClient secretsManagerClient = SecretsManagerClientFactory.getSecretsManagerClient(secretsManagerConfiguration); + assertTrue(secretsManagerClient instanceof SecretsManagerClientStandardImpl); + } + + @Test + public void getStandardSecretsManagerClient() { + SecretsManagerConfiguration secretsManagerConfiguration = new SecretsManagerConfiguration(); + secretsManagerConfiguration.setUseDefaultCredentialsProvider(false); + SecretsManagerInternalClient secretsManagerClient = SecretsManagerClientFactory.getSecretsManagerClient(secretsManagerConfiguration); + assertTrue(secretsManagerClient instanceof SecretsManagerClientStandardImpl); + } + + @Test + public void getSecretsManagerOptimizedIAMClient() { + SecretsManagerConfiguration secretsManagerConfiguration = new SecretsManagerConfiguration(); + secretsManagerConfiguration.setUseDefaultCredentialsProvider(true); + SecretsManagerInternalClient secretsManagerClient = SecretsManagerClientFactory.getSecretsManagerClient(secretsManagerConfiguration); + assertTrue(secretsManagerClient instanceof SecretsManagerClientIAMOptimized); + } +}
