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 8e3c5c8a080750abd00e7433e16fa79cd5639ae1 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu Apr 29 08:17:48 2021 +0200 CAMEL-16465 - Camel-AWS: Add useDefaultCredentialProvider option to all the components - DDB Streams component --- .../ddbstream/Ddb2StreamClientFactoryTest.java | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/components/camel-aws/camel-aws2-ddb/src/test/java/org/apache/camel/component/aws2/ddbstream/Ddb2StreamClientFactoryTest.java b/components/camel-aws/camel-aws2-ddb/src/test/java/org/apache/camel/component/aws2/ddbstream/Ddb2StreamClientFactoryTest.java new file mode 100644 index 0000000..0e7c32d --- /dev/null +++ b/components/camel-aws/camel-aws2-ddb/src/test/java/org/apache/camel/component/aws2/ddbstream/Ddb2StreamClientFactoryTest.java @@ -0,0 +1,56 @@ +/* + * 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.ddbstream; + +import org.apache.camel.component.aws2.ddb.Ddb2Configuration; +import org.apache.camel.component.aws2.ddb.client.Ddb2ClientFactory; +import org.apache.camel.component.aws2.ddb.client.Ddb2InternalClient; +import org.apache.camel.component.aws2.ddb.client.impl.Ddb2ClientIAMOptimizedImpl; +import org.apache.camel.component.aws2.ddb.client.impl.Ddb2ClientStandardImpl; +import org.apache.camel.component.aws2.ddbstream.client.Ddb2StreamClientFactory; +import org.apache.camel.component.aws2.ddbstream.client.Ddb2StreamInternalClient; +import org.apache.camel.component.aws2.ddbstream.client.impl.Ddb2StreamClientIAMOptimizedImpl; +import org.apache.camel.component.aws2.ddbstream.client.impl.Ddb2StreamClientStandardImpl; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertTrue; + +public class Ddb2StreamClientFactoryTest { + + @Test + public void getStandardDdb2StreamClientDefault() { + Ddb2StreamConfiguration ddb2StreamConfiguration = new Ddb2StreamConfiguration(); + Ddb2StreamInternalClient ddb2StreamClient = Ddb2StreamClientFactory.getDynamoDBStreamClient(ddb2StreamConfiguration); + assertTrue(ddb2StreamClient instanceof Ddb2StreamClientStandardImpl); + } + + @Test + public void getStandardDdb2StreamClient() { + Ddb2StreamConfiguration ddb2StreamConfiguration = new Ddb2StreamConfiguration(); + ddb2StreamConfiguration.setUseDefaultCredentialsProvider(false); + Ddb2StreamInternalClient ddb2StreamClient = Ddb2StreamClientFactory.getDynamoDBStreamClient(ddb2StreamConfiguration); + assertTrue(ddb2StreamClient instanceof Ddb2StreamClientStandardImpl); + } + + @Test + public void getIAMOptimizedDdb2StreamClient() { + Ddb2StreamConfiguration ddb2StreamConfiguration = new Ddb2StreamConfiguration(); + ddb2StreamConfiguration.setUseDefaultCredentialsProvider(true); + Ddb2StreamInternalClient ddb2StreamClient = Ddb2StreamClientFactory.getDynamoDBStreamClient(ddb2StreamConfiguration); + assertTrue(ddb2StreamClient instanceof Ddb2StreamClientIAMOptimizedImpl); + } +}