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 4ab6cb48aa225074765eef7a8f74556aa12dd5a4 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu May 27 08:43:57 2021 +0200 CAMEL-16465 - Camel-AWS: Add useDefaultCredentialProvider option to all the components - SES Component --- .../component/aws2/ses/Ses2ClientFactoryTest.java | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/components/camel-aws/camel-aws2-ses/src/test/java/org/apache/camel/component/aws2/ses/Ses2ClientFactoryTest.java b/components/camel-aws/camel-aws2-ses/src/test/java/org/apache/camel/component/aws2/ses/Ses2ClientFactoryTest.java new file mode 100644 index 0000000..0ce6e87 --- /dev/null +++ b/components/camel-aws/camel-aws2-ses/src/test/java/org/apache/camel/component/aws2/ses/Ses2ClientFactoryTest.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.ses; + +import org.apache.camel.component.aws2.ses.client.Ses2ClientFactory; +import org.apache.camel.component.aws2.ses.client.Ses2InternalClient; +import org.apache.camel.component.aws2.ses.client.impl.Ses2ClientOptimizedImpl; +import org.apache.camel.component.aws2.ses.client.impl.Ses2ClientStandardImpl; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertTrue; + +public class Ses2ClientFactoryTest { + + @Test + public void getStandardSESClientDefault() { + Ses2Configuration ses2Configuration = new Ses2Configuration(); + Ses2InternalClient sesClient = Ses2ClientFactory.getSesClient(ses2Configuration); + assertTrue(sesClient instanceof Ses2ClientStandardImpl); + } + + @Test + public void getStandardSESClient() { + Ses2Configuration ses2Configuration = new Ses2Configuration(); + ses2Configuration.setUseDefaultCredentialsProvider(false); + Ses2InternalClient sesClient = Ses2ClientFactory.getSesClient(ses2Configuration); + assertTrue(sesClient instanceof Ses2ClientStandardImpl); + } + + @Test + public void getSESOptimizedMSKClient() { + Ses2Configuration ses2Configuration = new Ses2Configuration(); + ses2Configuration.setUseDefaultCredentialsProvider(true); + Ses2InternalClient sesClient = Ses2ClientFactory.getSesClient(ses2Configuration); + assertTrue(sesClient instanceof Ses2ClientOptimizedImpl); + } +}