diff options
author | Steve Smokowski <ss835w@att.com> | 2019-01-12 13:14:14 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-01-12 13:14:14 +0000 |
commit | 06a568ebb67a1da72d33aa47eccb729b227bbe62 (patch) | |
tree | ed13295b18ec61c4a5680af5649c63d57067c410 /common | |
parent | 1771c8f9870688efdf8a4086cda3fdb872d9ccd4 (diff) | |
parent | 209f79396a218a8bb3c2acf105811ebe8b0b5142 (diff) |
Merge "Quality of Life logging improvements"
Diffstat (limited to 'common')
-rw-r--r-- | common/src/test/java/org/onap/so/client/aai/AAIPatchConverterTest.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/common/src/test/java/org/onap/so/client/aai/AAIPatchConverterTest.java b/common/src/test/java/org/onap/so/client/aai/AAIPatchConverterTest.java index 0cee366679..0d4490f51d 100644 --- a/common/src/test/java/org/onap/so/client/aai/AAIPatchConverterTest.java +++ b/common/src/test/java/org/onap/so/client/aai/AAIPatchConverterTest.java @@ -68,6 +68,15 @@ public class AAIPatchConverterTest { } @Test + public void convertStringToPatchFormatNull_Test() throws URISyntaxException, JsonParseException, JsonMappingException, IOException { + AAIPatchConverter validator = new AAIPatchConverter(); + String payload = "{\"ipv4-loopback0-address\": null}"; + String result = validator.marshallObjectToPatchFormat(payload); + System.out.println(result); + assertEquals("expect no change", payload, result); + } + + @Test public void convertMapToPatchFormatTest() throws URISyntaxException, JsonParseException, JsonMappingException, IOException { AAIPatchConverter validator = new AAIPatchConverter(); HashMap<String, String> map = new HashMap<>(); |