aboutsummaryrefslogtreecommitdiffstats
path: root/common-app-api/src/test/java
diff options
context:
space:
mode:
authorm.kowalski3 <m.kowalski3@partner.samsung.com>2019-05-29 16:07:52 +0200
committerOren Kleks <orenkle@amdocs.com>2019-05-30 10:14:52 +0000
commit937803bdd4b6e459093e42d784195a60556a7021 (patch)
tree293ff78115acccf18bdeab69b9b03b63a41a8b4e /common-app-api/src/test/java
parentdc5e4d94869c09c3961e58dd149d6f9150b80256 (diff)
Add unit tests for ConfigurationManager
Issue-ID: SDC-2327 Signed-off-by: Marcin Kowalski <m.kowalski3@partner.samsung.com> Change-Id: I2acfba224c46ffa743a254b1c560767b947f8fdd
Diffstat (limited to 'common-app-api/src/test/java')
-rw-r--r--common-app-api/src/test/java/org/openecomp/sdc/be/config/ConfigurationManagerTest.java73
1 files changed, 73 insertions, 0 deletions
diff --git a/common-app-api/src/test/java/org/openecomp/sdc/be/config/ConfigurationManagerTest.java b/common-app-api/src/test/java/org/openecomp/sdc/be/config/ConfigurationManagerTest.java
new file mode 100644
index 0000000000..513c237035
--- /dev/null
+++ b/common-app-api/src/test/java/org/openecomp/sdc/be/config/ConfigurationManagerTest.java
@@ -0,0 +1,73 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP SDC
+ * ================================================================================
+ * 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.
+ * ============LICENSE_END============================================
+ * ===================================================================
+ *
+ */
+
+package org.openecomp.sdc.be.config;
+
+import static org.junit.Assert.assertEquals;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.openecomp.sdc.common.api.ConfigurationSource;
+import org.openecomp.sdc.common.config.EcompErrorConfiguration;
+import org.openecomp.sdc.common.impl.ExternalConfiguration;
+import org.openecomp.sdc.common.impl.FSConfigurationSource;
+
+public class ConfigurationManagerTest {
+
+ private ConfigurationManager configurationManager;
+
+ @Before
+ public void setConfigurationSource() {
+ String appConfigDir = "src/test/resources/config/common";
+ ConfigurationSource configurationSource =
+ new FSConfigurationSource(ExternalConfiguration.getChangeListener(), appConfigDir);
+ configurationManager = new ConfigurationManager(configurationSource);
+ }
+
+ @Test
+ public void testGetConfiguration() {
+ assertEquals(configurationManager.getConfiguration(),
+ ConfigurationManager.getConfigurationManager().configurations.get(Configuration.class.getSimpleName()));
+ }
+
+ @Test
+ public void testGetErrorConfiguration() {
+ assertEquals(configurationManager.getErrorConfiguration(),
+ ConfigurationManager.getConfigurationManager().configurations
+ .get(ErrorConfiguration.class.getSimpleName()));
+ }
+
+ @Test
+ public void testGetEcompErrorConfiguration() {
+ assertEquals(configurationManager.getEcompErrorConfiguration(),
+ ConfigurationManager.getConfigurationManager().configurations
+ .get(EcompErrorConfiguration.class.getSimpleName()));
+ }
+
+ @Test
+ public void testGetDistributionEngineConfiguration() {
+ assertEquals(configurationManager.getDistributionEngineConfiguration(),
+ ConfigurationManager.getConfigurationManager().configurations
+ .get(DistributionEngineConfiguration.class.getSimpleName()));
+ }
+
+}