You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2021/04/12 06:13:48 UTC

[camel] 03/03: Camel-AWS-Secrets-Manager: Added a simple configuration test for component

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit eec0062ae9a6e7facf0b59ccd9519f0ae28fa4e9
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Apr 12 08:12:39 2021 +0200

    Camel-AWS-Secrets-Manager: Added a simple configuration test for component
---
 .../SecretsManagerComponentConfigurationTest.java  | 38 ++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/components/camel-aws/camel-aws-secrets-manager/src/test/java/org/apache/camel/component/aws/secretsmanager/integration/SecretsManagerComponentConfigurationTest.java b/components/camel-aws/camel-aws-secrets-manager/src/test/java/org/apache/camel/component/aws/secretsmanager/integration/SecretsManagerComponentConfigurationTest.java
new file mode 100644
index 0000000..8d6c2f6
--- /dev/null
+++ b/components/camel-aws/camel-aws-secrets-manager/src/test/java/org/apache/camel/component/aws/secretsmanager/integration/SecretsManagerComponentConfigurationTest.java
@@ -0,0 +1,38 @@
+/*
+ * 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.integration;
+
+import org.apache.camel.component.aws.secretsmanager.SecretsManagerComponent;
+import org.apache.camel.component.aws.secretsmanager.SecretsManagerEndpoint;
+import org.apache.camel.test.junit5.CamelTestSupport;
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+public class SecretsManagerComponentConfigurationTest extends CamelTestSupport {
+
+    @Test
+    public void createEndpointWithMinimalConfiguration() throws Exception {
+        SecretsManagerComponent component = context.getComponent("aws-secrets-manager", SecretsManagerComponent.class);
+        SecretsManagerEndpoint endpoint = (SecretsManagerEndpoint) component
+                .createEndpoint("aws-secrets-manager://test?accessKey=xxx&secretKey=yyy&region=eu-west-1");
+
+        assertEquals("xxx", endpoint.getConfiguration().getAccessKey());
+        assertEquals("yyy", endpoint.getConfiguration().getSecretKey());
+        assertEquals("eu-west-1", endpoint.getConfiguration().getRegion());
+    }
+}