summaryrefslogtreecommitdiffstats
path: root/aai-core/src
diff options
context:
space:
mode:
Diffstat (limited to 'aai-core/src')
-rw-r--r--aai-core/src/test/java/org/onap/aai/domain/restPolicyException/PolicyExceptionTest.java68
-rw-r--r--aai-core/src/test/java/org/onap/aai/util/MapperUtilTest.java85
2 files changed, 120 insertions, 33 deletions
diff --git a/aai-core/src/test/java/org/onap/aai/domain/restPolicyException/PolicyExceptionTest.java b/aai-core/src/test/java/org/onap/aai/domain/restPolicyException/PolicyExceptionTest.java
new file mode 100644
index 00000000..e537c3df
--- /dev/null
+++ b/aai-core/src/test/java/org/onap/aai/domain/restPolicyException/PolicyExceptionTest.java
@@ -0,0 +1,68 @@
+/**
+ * ============LICENSE_START=======================================================
+ * org.onap.aai
+ * ================================================================================
+ * 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
+ *
+ * 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.aai.domain.restPolicyException;
+
+import static org.junit.Assert.assertEquals;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.onap.aai.AAISetup;
+
+public class PolicyExceptionTest extends AAISetup{
+ private PolicyException exception;
+
+ @Before
+ public void setup() {
+ exception = new PolicyException();
+ }
+
+ @Test
+ public void testGetAdditionalProperty() throws Exception {
+ exception.setAdditionalProperty("property1", "value1");
+ assertEquals(exception.getAdditionalProperties().get("property1"), "value1");
+ }
+
+ @Test
+ public void testGetMessageId() throws Exception {
+ exception.setMessageId("samplemessage");
+ assertEquals(exception.getMessageId(), "samplemessage");
+ }
+
+ @Test
+ public void testGetText() throws Exception {
+ exception.setText("sampletext");
+ assertEquals(exception.getText(), "sampletext");
+ }
+
+ @Test
+ public void testGetVariables() throws Exception {
+ List<String> expectedVariables = new ArrayList<>();
+ expectedVariables.add("firstvariable");
+ expectedVariables.add("secondvariable");
+ exception.setVariables(expectedVariables);
+ assertEquals(exception.getVariables(), expectedVariables);
+
+ }
+}
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;
+ }
}