aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVenkata Harish Kajur <vk250x@att.com>2018-09-19 00:01:51 +0000
committerGerrit Code Review <gerrit@onap.org>2018-09-19 00:01:51 +0000
commitd33a1cd017103e4f69cedd53d160e2b69200da95 (patch)
treed9390b1903185a0ca4449a5bacc33b7462903533
parent3251e7933d8ebba7d53d847a032bac1721fac983 (diff)
parent7b017dc7c01dc0619cd19527835766838649eae4 (diff)
Merge "Test case coverage for MapperUtil.java"
-rw-r--r--aai-core/src/test/java/org/onap/aai/util/MapperUtilTest.java85
1 files changed, 52 insertions, 33 deletions
diff --git a/aai-core/src/test/java/org/onap/aai/util/MapperUtilTest.java b/aai-core/src/test/java/org/onap/aai/util/MapperUtilTest.java
index 309d1333..2d68f833 100644
--- a/aai-core/src/test/java/org/onap/aai/util/MapperUtilTest.java
+++ b/aai-core/src/test/java/org/onap/aai/util/MapperUtilTest.java
@@ -4,6 +4,8 @@
* ================================================================================
* Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
* ================================================================================
+ * Modifications Copyright © 2018 IBM.
+ * ================================================================================
* 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
@@ -27,44 +29,61 @@ import static org.junit.Assert.assertEquals;
public class MapperUtilTest {
- public class SampleClass {
- private String color;
- private String shape;
-
- public SampleClass(String c, String s){
- color = c;
- shape = s;
- }
+
- public String getColor() {
- return color;
- }
+ private JSONObject expectedJson;
+ private JSONObject sampleJson;
- public void setColor(String color) {
- this.color = color;
- }
+ @Before
+ public void setup(){
+ expectedJson = new JSONObject();
+ sampleJson = new JSONObject();
+ }
- public String getShape() {
- return shape;
- }
+ @Test
+ public void writeAsJSONStringTest() throws Exception {
+ expectedJson.put("color", "black");
+ expectedJson.put("shape", "box");
+ SampleClass sample = new SampleClass("black", "box");
+ assertEquals(expectedJson.toString(), MapperUtil.writeAsJSONString(sample));
+ }
+
+ @Test
+ public void readAsObjectOfTest() throws Exception {
+ sampleJson.put("color", "black");
+ sampleJson.put("shape", "box");
+ SampleClass expectedObject = new SampleClass("black", "box");
+ SampleClass actualObject = MapperUtil.readAsObjectOf(SampleClass.class, sampleJson.toString());
+ assertEquals(expectedObject.getColor(), actualObject.getColor());
+ assertEquals(expectedObject.getShape(), actualObject.getShape());
+ }
+}
- public void setShape(String shape) {
- this.shape = shape;
- }
- }
+class SampleClass {
+ private String color;
+ private String shape;
- private JSONObject expectedJson;
+ public SampleClass() {
+
+ }
+ public SampleClass(String c, String s){
+ color = c;
+ shape = s;
+ }
- @Before
- public void setup(){
- expectedJson = new JSONObject();
- }
+ public String getColor() {
+ return color;
+ }
+
+ public void setColor(String color) {
+ this.color = color;
+ }
+
+ public String getShape() {
+ return shape;
+ }
- @Test
- public void writeAsJSONStringTest() throws Exception {
- expectedJson.put("color", "black");
- expectedJson.put("shape", "box");
- SampleClass sample = new SampleClass("black", "box");
- assertEquals(expectedJson.toString(), MapperUtil.writeAsJSONString(sample));
- }
+ public void setShape(String shape) {
+ this.shape = shape;
+ }
}