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 e8cee2c25ad82db46693b1bbf3f42ccbc6f50dcd Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu May 13 08:48:20 2021 +0200 CAMEL-16465 - Camel-AWS: Add useDefaultCredentialProvider option to all the components - EKS Component --- .../component/aws2/eks/EKS2ClientFactoryTest.java | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/components/camel-aws/camel-aws2-eks/src/test/java/org/apache/camel/component/aws2/eks/EKS2ClientFactoryTest.java b/components/camel-aws/camel-aws2-eks/src/test/java/org/apache/camel/component/aws2/eks/EKS2ClientFactoryTest.java new file mode 100644 index 0000000..152a6dd --- /dev/null +++ b/components/camel-aws/camel-aws2-eks/src/test/java/org/apache/camel/component/aws2/eks/EKS2ClientFactoryTest.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.eks; + +import org.apache.camel.component.aws2.eks.client.EKS2ClientFactory; +import org.apache.camel.component.aws2.eks.client.EKS2InternalClient; +import org.apache.camel.component.aws2.eks.client.impl.EKS2ClientIAMOptimizedImpl; +import org.apache.camel.component.aws2.eks.client.impl.EKS2ClientStandardImpl; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertTrue; + +public class EKS2ClientFactoryTest { + + @Test + public void getStandardEKS2ClientDefault() { + EKS2Configuration eks2Configuration = new EKS2Configuration(); + EKS2InternalClient eks2Client = EKS2ClientFactory.getEksClient(eks2Configuration); + assertTrue(eks2Client instanceof EKS2ClientStandardImpl); + } + + @Test + public void getStandardEKS2Client() { + EKS2Configuration eks2Configuration = new EKS2Configuration(); + eks2Configuration.setUseDefaultCredentialsProvider(false); + EKS2InternalClient eks2Client = EKS2ClientFactory.getEksClient(eks2Configuration); + assertTrue(eks2Client instanceof EKS2ClientStandardImpl); + } + + @Test + public void getIAMOptimizedEKS2Client() { + EKS2Configuration eks2Configuration = new EKS2Configuration(); + eks2Configuration.setUseDefaultCredentialsProvider(true); + EKS2InternalClient eks2Client = EKS2ClientFactory.getEksClient(eks2Configuration); + assertTrue(eks2Client instanceof EKS2ClientIAMOptimizedImpl); + } +}