From 937803bdd4b6e459093e42d784195a60556a7021 Mon Sep 17 00:00:00 2001 From: "m.kowalski3" Date: Wed, 29 May 2019 16:07:52 +0200 Subject: Add unit tests for ConfigurationManager Issue-ID: SDC-2327 Signed-off-by: Marcin Kowalski Change-Id: I2acfba224c46ffa743a254b1c560767b947f8fdd --- .../sdc/be/config/ConfigurationManagerTest.java | 73 ++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 common-app-api/src/test/java/org/openecomp/sdc/be/config/ConfigurationManagerTest.java (limited to 'common-app-api/src/test/java') 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())); + } + +} -- cgit 1.2.3-korg