Add new unit test for ConfigurationImpl. 12/88612/3
authork.kedron <k.kedron@partner.samsung.com>
Tue, 28 May 2019 09:40:36 +0000 (11:40 +0200)
committerOfir Sonsino <ofir.sonsino@intl.att.com>
Sun, 2 Jun 2019 11:00:44 +0000 (11:00 +0000)
Issue-ID: SDC-2327
Signed-off-by: Krystian Kedron <k.kedron@partner.samsung.com>
Change-Id: I96269b0bcdf3c1254052d057b8c4ad2d7a48c89d

common/onap-common-configuration-management/onap-configuration-management-core/src/test/java/org/onap/config/CliConfigurtationImpTest.java [new file with mode: 0644]
common/onap-common-configuration-management/onap-configuration-management-core/src/test/java/org/onap/config/util/ConfigTestConstant.java
common/onap-common-configuration-management/onap-configuration-management-core/src/test/java/org/onap/config/util/TestImplementationConfiguration.java [new file with mode: 0644]
common/onap-common-configuration-management/onap-configuration-management-core/src/test/resources/CLIConfiguration/config.json [new file with mode: 0644]

diff --git a/common/onap-common-configuration-management/onap-configuration-management-core/src/test/java/org/onap/config/CliConfigurtationImpTest.java b/common/onap-common-configuration-management/onap-configuration-management-core/src/test/java/org/onap/config/CliConfigurtationImpTest.java
new file mode 100644 (file)
index 0000000..0d460a2
--- /dev/null
@@ -0,0 +1,92 @@
+/*
+ * Copyright (C) 2019 Samsung. All rights reserved.
+ *
+ * Licensed 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.onap.config;
+
+import org.junit.Test;
+import org.onap.config.api.ConfigurationManager;
+import org.onap.config.impl.CliConfigurationImpl;
+import org.onap.config.util.ConfigTestConstant;
+import org.onap.config.util.TestImplementationConfiguration;
+
+import java.util.Map;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+public class CliConfigurtationImpTest {
+
+    private static final String NAMESPACE = "CLIConfiguration";
+    private static final String TENANT = "OPENECOMP";
+    private static final String IMPL_KEY = "CLIImpl";
+    private static final String SERVICE_CONF = "testService";
+
+    @Test
+    public void testGenerateAndPopulateMap() throws Exception {
+
+        // given
+        ConfigurationManager conf = new CliConfigurationImpl();
+        // when
+        Map outputMap = conf.generateMap(TENANT,  NAMESPACE, ConfigTestConstant.ARTIFACT);
+        TestImplementationConfiguration testServiceImpl = conf.populateMap(TENANT, NAMESPACE, IMPL_KEY,
+                TestImplementationConfiguration.class).get(SERVICE_CONF);
+
+        // then
+        validateCliMapConfig(outputMap);
+        assertTrue(testServiceImpl.isEnable());
+        assertEquals("org.junit.Test", testServiceImpl.getImplementationClass());
+    }
+
+    private void validateCliMapConfig(Map outputMap){
+        assertEquals("appc", outputMap.get(
+                withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_CONSUMER)));
+        assertEquals("6", extract(outputMap,
+                withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_NAME_MINLENGTH)));
+        assertEquals("true", outputMap.get(
+                withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_ENCODED)));
+        assertEquals("14", extract(outputMap,
+                withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_NAME_MAXLENGTH)));
+        assertEquals("pdf", outputMap.get(
+                withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_EXT)));
+        assertEquals("Base64", outputMap.get(
+                withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_ENC)));
+        assertEquals("a-zA-Z_0-9", extract(outputMap,
+                withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_NAME_UPPER)));
+        assertEquals("deleted", outputMap.get(
+                withoutArtifactPrefix(ConfigTestConstant.ARTIFACT_STATUS)));
+
+    }
+
+    public String withoutArtifactPrefix(String key){
+        return key.replace(ConfigTestConstant.ARTIFACT + ".", "");
+    }
+
+    public String extract(Map map, String keys) {
+
+        String[] keysList = keys.split("\\.");
+        Map recursive = (Map) map.get(keysList[0]);
+
+        for (int i = 1; i < keysList.length; i++) {
+            if (i == keysList.length - 1) {
+                return  (String) recursive.get(keysList[i]);
+            }
+            recursive = (Map) recursive.get(keysList[i]);
+        }
+        return null;
+    }
+
+
+}
index 434c7d3..b7bea4c 100644 (file)
@@ -1,6 +1,8 @@
 /*
  * Copyright © 2016-2018 European Support Limited
  *
+ * Modifications Copyright (c) 2019 Samsung
+ *
  * Licensed 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
@@ -18,24 +20,24 @@ package org.onap.config.util;
 
 public class ConfigTestConstant {
 
-    public static final String ARTIFACT_NAME_MAXLENGTH = "artifact.name.maxlength";
-    public static final String ARTIFACT_MAXSIZE = "artifact.maxsize";
-    public static final String ARTIFACT_EXT = "artifact.extension";
-    public static final String ARTIFACT_ENC = "artifact.supportedEncryption";
-    public static final String ARTIFACT_NAME_UPPER = "artifact.name.allowedChar";
-    public static final String ARTIFACT_NAME_LOWER = "artifact.name.allowedchar";
-    public static final String ARTIFACT_STATUS = "artifact.status";
-    public static final String ARTIFACT_LOC = "artifact.persistLocation";
-    public static final String ARTIFACT_JSON_SCHEMA = "artifact.jsonSchema";
-    public static final String ARTIFACT_XML_SCHEMA = "artifact.xmlSchema";
-    public static final String ARTIFACT_CONSUMER_APPC = "artifact.consumerAPPC";
-    public static final String ARTIFACT_CONSUMER = "artifact.consumer";
-    public static final String ARTIFACT_MANDATORY_NAME = "artifact.mandatory.name";
-    public static final String ARTIFACT_NAME_MINLENGTH = "artifact.name.minlength";
-    public static final String ARTIFACT_ENCODED = "artifact.encoded";
+    public static final String ARTIFACT = "artifact";
+    public static final String ARTIFACT_NAME_MAXLENGTH = ARTIFACT + ".name.maxlength";
+    public static final String ARTIFACT_MAXSIZE = ARTIFACT + ".maxsize";
+    public static final String ARTIFACT_EXT = ARTIFACT + ".extension";
+    public static final String ARTIFACT_ENC = ARTIFACT + ".supportedEncryption";
+    public static final String ARTIFACT_NAME_UPPER = ARTIFACT + ".name.allowedChar";
+    public static final String ARTIFACT_NAME_LOWER = ARTIFACT + ".name.allowedchar";
+    public static final String ARTIFACT_STATUS = ARTIFACT + ".status";
+    public static final String ARTIFACT_LOC = ARTIFACT + ".persistLocation";
+    public static final String ARTIFACT_JSON_SCHEMA = ARTIFACT + ".jsonSchema";
+    public static final String ARTIFACT_XML_SCHEMA = ARTIFACT + ".xmlSchema";
+    public static final String ARTIFACT_CONSUMER_APPC = ARTIFACT + ".consumerAPPC";
+    public static final String ARTIFACT_CONSUMER = ARTIFACT + ".consumer";
+    public static final String ARTIFACT_MANDATORY_NAME = ARTIFACT + ".mandatory.name";
+    public static final String ARTIFACT_NAME_MINLENGTH = ARTIFACT + ".name.minlength";
+    public static final String ARTIFACT_ENCODED = ARTIFACT + ".encoded";
 
     public static final String PATH = "PATH";
-    public static final String ONBOARDING_NAMESPACE = "onboarding";
 
     private ConfigTestConstant() {
         // prevent instantiation
diff --git a/common/onap-common-configuration-management/onap-configuration-management-core/src/test/java/org/onap/config/util/TestImplementationConfiguration.java b/common/onap-common-configuration-management/onap-configuration-management-core/src/test/java/org/onap/config/util/TestImplementationConfiguration.java
new file mode 100644 (file)
index 0000000..8d79dea
--- /dev/null
@@ -0,0 +1,52 @@
+/*
+ * Copyright (C) 2019 Samsung. All rights reserved.
+ *
+ * Licensed 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.onap.config.util;
+
+import org.onap.config.api.Config;
+
+import java.util.Map;
+
+@Config(key = "")
+public class TestImplementationConfiguration {
+    @Config(key = "enable")
+    Boolean enable = true;
+    @Config(key = "implementationClass")
+    String implementationClass;
+    @Config(key = "properties")
+    Map<String, Object> properties;
+
+    public void setEnable(Boolean enable) {
+        this.enable = enable;
+    }
+
+    public Boolean isEnable() {
+        return enable;
+    }
+
+    public String getImplementationClass() {
+        return implementationClass;
+    }
+
+    public Map<String, Object> getProperties() {
+        return properties;
+    }
+
+    public void setProperties(Map<String, Object> properties) {
+        this.properties = properties;
+    }
+
+}
diff --git a/common/onap-common-configuration-management/onap-configuration-management-core/src/test/resources/CLIConfiguration/config.json b/common/onap-common-configuration-management/onap-configuration-management-core/src/test/resources/CLIConfiguration/config.json
new file mode 100644 (file)
index 0000000..7809146
--- /dev/null
@@ -0,0 +1,23 @@
+{
+       "artifact": {
+               "name": {
+                       "minlength": "6",
+                       "maxlength": "14",
+                       "allowedChar": "a-zA-Z_0-9"
+               },
+               "consumer": "appc",
+               "encoded": "true",
+               "extension": "pdf",
+               "supportedEncryption": "Base64",
+               "status": "deleted"
+       },
+       "CLIImpl": {
+               "testService": {
+                       "enable": "true",
+                       "implementationClass": "org.junit.Test"
+               }
+       },
+       "_config": {
+               "namespace": "OPENECOMP:CLIConfiguration"
+       }
+}
\ No newline at end of file