From 0fed84c124d4bc8a15a0d930747cd91f3cf3a452 Mon Sep 17 00:00:00 2001 From: Chandan Ghosh Date: Thu, 10 Jan 2019 13:59:45 +0530 Subject: added testclass for JsonParser Added junit testcase file for jsonparser.java Issue-ID: DCAEGEN2-1071 Change-Id: Idd914f2c0724f61ed06ea65f82ed66aa3fbaa2b5 Signed-off-by: Chandan Ghosh --- .../common/event/publishing/JsonParserTest.java | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/test/java/org/onap/dcae/collectors/restconf/common/event/publishing/JsonParserTest.java (limited to 'src/test/java') 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 response=JsonParser.convertToProperties(testJson); + Assert.assertEquals("value", response.get("prop2")); + } +} -- cgit 1.2.3-korg