summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap
diff options
context:
space:
mode:
authorEddy Hautot <eh552t@intl.att.com>2018-03-05 12:53:44 +0000
committerGerrit Code Review <gerrit@onap.org>2018-03-05 12:53:44 +0000
commitc1006c29c8d9566f7157e84891abb69190ae2efb (patch)
treedfc10cce1123d7cd902e03b55e52a1319efc81c2 /src/test/java/org/onap
parent356fc5f8f9f0b075fba54da19df2de0fb9c0c69f (diff)
parent912e5e9201bf60169ad39686ba5bd9d9bc6e3579 (diff)
Merge "Rework configuration"
Diffstat (limited to 'src/test/java/org/onap')
-rw-r--r--src/test/java/org/onap/clamp/clds/it/config/CldsReferencePropertiesItCase.java18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/test/java/org/onap/clamp/clds/it/config/CldsReferencePropertiesItCase.java b/src/test/java/org/onap/clamp/clds/it/config/CldsReferencePropertiesItCase.java
index 79b26111f..484a13e60 100644
--- a/src/test/java/org/onap/clamp/clds/it/config/CldsReferencePropertiesItCase.java
+++ b/src/test/java/org/onap/clamp/clds/it/config/CldsReferencePropertiesItCase.java
@@ -59,6 +59,7 @@ public class CldsReferencePropertiesItCase {
assertEquals(refProp.getStringValue("policy.ms.policyNamePrefix", ""), "Config_MS_");
assertEquals(refProp.getStringValue("policy.ms.policyNamePrefix", "testos"), "Config_MS_");
assertEquals(refProp.getStringValue("policy.ms", "policyNamePrefix"), "Config_MS_");
+ assertNull(refProp.getStringValue("does.not.exist"));
}
/**
@@ -68,7 +69,7 @@ public class CldsReferencePropertiesItCase {
* when JSON parsing fails
*/
@Test
- public void testJsonTemplate() throws IOException {
+ public void testGetJsonTemplate() throws IOException {
// ui.location.default={"DC1":"Data Center 1","DC2":"Data Center
// 2","DC3":"Data Center 3"}
ObjectNode root = (ObjectNode) refProp.getJsonTemplate("ui.location.default");
@@ -81,4 +82,19 @@ public class CldsReferencePropertiesItCase {
root = (ObjectNode) refProp.getJsonTemplate("ui.location", "");
assertNull(root);
}
+
+ /**
+ * Test getting prop value as a JSON Node / template.
+ *
+ * @throws IOException
+ * when JSON parsing fails
+ */
+ @Test
+ public void testGetFileContent() throws IOException {
+ String content = refProp.getFileContent("sdc.decode.service_ids");
+ assertEquals("{}", content);
+ // Test composite key
+ content = refProp.getFileContent("sdc.decode", "service_ids");
+ assertEquals("{}", content);
+ }
}