summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChandan Ghosh <cghosh12@in.ibm.com>2019-01-10 13:59:45 +0530
committerChandan Ghosh <cghosh12@in.ibm.com>2019-01-10 13:59:50 +0530
commit0fed84c124d4bc8a15a0d930747cd91f3cf3a452 (patch)
tree095597881894b6629fa7f00db9c3d2617b6f7ef3
parent85dd16532b7282359a660c0c00d8d19041e3bb33 (diff)
added testclass for JsonParser
Added junit testcase file for jsonparser.java Issue-ID: DCAEGEN2-1071 Change-Id: Idd914f2c0724f61ed06ea65f82ed66aa3fbaa2b5 Signed-off-by: Chandan Ghosh <cghosh12@in.ibm.com>
-rw-r--r--src/test/java/org/onap/dcae/collectors/restconf/common/event/publishing/JsonParserTest.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/test/java/org/onap/dcae/collectors/restconf/common/event/publishing/JsonParserTest.java b/src/test/java/org/onap/dcae/collectors/restconf/common/event/publishing/JsonParserTest.java
new file mode 100644
index 0000000..a5609f9
--- /dev/null
+++ b/src/test/java/org/onap/dcae/collectors/restconf/common/event/publishing/JsonParserTest.java
@@ -0,0 +1,38 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * org.onap.dcaegen2.collectors.restconf
+ * ================================================================================
+ * Copyright (C) 2019 IBM. 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.onap.dcae.collectors.restconf.common.event.publishing;
+
+import java.util.Map;
+
+import org.junit.Test;
+import org.onap.dcae.collectors.restconf.common.JsonParser;
+
+import junit.framework.Assert;
+
+public class JsonParserTest {
+
+ @Test
+ public void convertToPropertiesTest() throws Exception {
+ String testJson="{\"prop2\"=\"value\", \"prop1\"=\"value\"}";
+ Map<String, String> response=JsonParser.convertToProperties(testJson);
+ Assert.assertEquals("value", response.get("prop2"));
+ }
+}