diff options
author | Piotr Darosz <piotr.darosz@nokia.com> | 2019-07-23 08:00:04 +0200 |
---|---|---|
committer | Piotr Darosz <piotr.darosz@nokia.com> | 2019-07-23 08:00:43 +0200 |
commit | a73cbca41fbba96855173f39c89c04d50d4d8672 (patch) | |
tree | 47792a786c86d9ced825744769927ba38f79ebd3 /common-app-api/src/test | |
parent | 4d8364e7ac25838c0aeabcd89af2e447c30d9426 (diff) |
File name calculation refactoring
FSConfigurationSource file name calculation refactoring and tests
Change-Id: Idf1c45f860e12c14cfe88417500f2169b5dc86f7
Issue-ID: SDC-2474
Signed-off-by: Piotr Darosz <piotr.darosz@nokia.com>
Diffstat (limited to 'common-app-api/src/test')
-rw-r--r-- | common-app-api/src/test/java/org/openecomp/sdc/common/impl/FSConfigurationSourceTest.java | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/common-app-api/src/test/java/org/openecomp/sdc/common/impl/FSConfigurationSourceTest.java b/common-app-api/src/test/java/org/openecomp/sdc/common/impl/FSConfigurationSourceTest.java new file mode 100644 index 0000000000..b9116bb34d --- /dev/null +++ b/common-app-api/src/test/java/org/openecomp/sdc/common/impl/FSConfigurationSourceTest.java @@ -0,0 +1,61 @@ +/*- + * ============LICENSE_START======================================================= + * SDC + * ================================================================================ + * Copyright (C) 2019 Nokia. 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.common.impl; + +import static org.junit.Assert.assertEquals; + +import org.junit.Test; +import org.openecomp.sdc.be.config.Configuration; +import org.openecomp.sdc.be.config.ErrorConfiguration; +import org.openecomp.sdc.be.config.Neo4jErrorsConfiguration; +import org.openecomp.sdc.common.api.Constants; + +public class FSConfigurationSourceTest { + @Test + public void calculateFileNameWhenSplitRequired() { + Class<ErrorConfiguration> clazz = ErrorConfiguration.class; + + String expected = "error-configuration" + Constants.YAML_SUFFIX; + String actual = FSConfigurationSource.calculateFileName(clazz); + + assertEquals(expected, actual); + } + + @Test + public void calculateFileNameWhenNoSplitRequired() { + Class<Configuration> clazz = Configuration.class; + + String expected = "configuration" + Constants.YAML_SUFFIX; + String actual = FSConfigurationSource.calculateFileName(clazz); + + assertEquals(expected, actual); + } + + @Test + public void calculateFileNameWithCamelCaseAndDigits() { + Class<Neo4jErrorsConfiguration> clazz = Neo4jErrorsConfiguration.class; + + String expected = "neo4j-errors-configuration" + Constants.YAML_SUFFIX; + String actual = FSConfigurationSource.calculateFileName(clazz); + + assertEquals(expected, actual); + } +}
\ No newline at end of file |