diff options
author | k.kedron <k.kedron@partner.samsung.com> | 2019-06-04 16:21:03 +0200 |
---|---|---|
committer | Oren Kleks <orenkle@amdocs.com> | 2019-06-11 06:38:06 +0000 |
commit | 3a98ad373d3f8a8cccce36f78e24bd24278043d6 (patch) | |
tree | 252377d7610edd465bcff1b85adb61d87f4b8921 /common/onap-common-configuration-management/onap-configuration-management-core/src/test | |
parent | 0d29f9d83ef3de89ea59622be7fe045ac0eed5f8 (diff) |
Improve unit test in the NonConfigResourceTest and various sonar fixes.
Improve the NonConfigResourceTest.
Remove the throws the Exception in CliConfigurationImp constructor.
ConfigurationImpl class:
- Replace the string to chart in indexOf method.
- Extract the assigment out from expression
Issue-ID: SDC-2327
Signed-off-by: Krystian Kedron <k.kedron@partner.samsung.com>
Change-Id: If72a75e6a2d81a9ea74e3ae1af94b16a8489a29a
Diffstat (limited to 'common/onap-common-configuration-management/onap-configuration-management-core/src/test')
-rw-r--r-- | common/onap-common-configuration-management/onap-configuration-management-core/src/test/java/org/onap/config/NonConfigResourceTest.java | 33 |
1 files changed, 24 insertions, 9 deletions
diff --git a/common/onap-common-configuration-management/onap-configuration-management-core/src/test/java/org/onap/config/NonConfigResourceTest.java b/common/onap-common-configuration-management/onap-configuration-management-core/src/test/java/org/onap/config/NonConfigResourceTest.java index 7566a29749..f2f3f9b6f8 100644 --- a/common/onap-common-configuration-management/onap-configuration-management-core/src/test/java/org/onap/config/NonConfigResourceTest.java +++ b/common/onap-common-configuration-management/onap-configuration-management-core/src/test/java/org/onap/config/NonConfigResourceTest.java @@ -27,6 +27,7 @@ import java.net.URL; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Collections; +import java.util.HashMap; import java.util.Map; import org.junit.Test; @@ -55,15 +56,19 @@ public class NonConfigResourceTest { @Test public void testShouldLocateResourceWhenNodeConfigPropertyIsSet2() { + final String path = new File(sampleResourcePath).getParentFile().getPath(); + Map<String, String> properties = Collections.singletonMap(NODE_CONFIG_LOCATION, path); - Map<String, String> properties = Collections.singletonMap( - NODE_CONFIG_LOCATION, new File(sampleResourcePath).getParentFile().getPath()); - - NonConfigResource testedNonConfigResource = new NonConfigResource(properties::get); - System.getProperties().setProperty(NODE_CONFIG_LOCATION, - new File(sampleResourcePath).getParentFile().getPath()); + NonConfigResource testedNonConfigResource = new NonConfigResource(properties::get); Path thisFilePath = testedNonConfigResource.locate(RESOURCE_NAME); - assertEquals(0, thisFilePath.compareTo(new File(sampleResourcePath).toPath())); + + NonConfigResource systemNonConfigResource = new NonConfigResource(System.getProperties()::getProperty); + System.setProperty(NODE_CONFIG_LOCATION, path); + Path systemFilePath = systemNonConfigResource.locate(RESOURCE_NAME); + + Path testFilePath = sampleResourceFile.toPath(); + assertEquals(0, thisFilePath.compareTo(testFilePath)); + assertEquals(0, systemFilePath.compareTo(testFilePath)); } @Test @@ -88,9 +93,19 @@ public class NonConfigResourceTest { @Test public void testShouldNotLocateResource2() { - Map<String, String> properties = Collections.emptyMap(); + String badResource = "noexistingresource"; + String badPath = "noexistingpath"; + + Map<String, String> properties = new HashMap<>(); NonConfigResource testedObject = new NonConfigResource(properties::get); - Path thisFilePath = testedObject.locate("nonexistingresource"); + // empty properties and bad resource + Path thisFilePath = testedObject.locate(badResource); + + properties.put(NODE_CONFIG_LOCATION, badPath); + // bad path in properties and bad resource + Path thisFilePath2 = testedObject.locate(badResource); + assertNull(thisFilePath); + assertNull(thisFilePath2); } }
\ No newline at end of file |