Added tests for appc.flow.Response 37/40337/3
authorkurczews <krzysztof.kurczewski@nokia.com>
Fri, 30 Mar 2018 07:53:02 +0000 (09:53 +0200)
committerTakamune Cho <tc012c@att.com>
Tue, 3 Apr 2018 15:34:22 +0000 (15:34 +0000)
Issue-ID: APPC-442
Change-Id: Ie42cf7a2ec83ceeed94f567874cf4a634e6bb8c9
Signed-off-by: kurczews <krzysztof.kurczewski@nokia.com>
appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/data/ResponseTest.java [new file with mode: 0644]

diff --git a/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/data/ResponseTest.java b/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/data/ResponseTest.java
new file mode 100644 (file)
index 0000000..9cf5a33
--- /dev/null
@@ -0,0 +1,83 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2018 Nokia Intellectual Property. 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.appc.flow.controller.data;
+
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+public class ResponseTest {
+
+    private Response response;
+
+    @Before
+    public void setUp() {
+        response = new Response();
+    }
+
+    @Test
+    public void get_set_response_action() {
+        ResponseAction ra = mock(ResponseAction.class);
+        response.setResponseAction(ra);
+        Assert.assertEquals(ra, response.getResponseAction());
+    }
+
+    @Test
+    public void get_set_response_action_handler() {
+        String rah = "response_action_handler";
+        response.setResponseActionHanlder(rah);
+        Assert.assertEquals(rah, response.getResponseActionHanlder());
+    }
+
+    @Test
+    public void get_set_response_code() {
+        String responseCode = "response_code";
+        response.setResponseCode(responseCode);
+        Assert.assertEquals(responseCode, response.getResponseCode());
+    }
+
+    @Test
+    public void get_set_response_message() {
+        String responseMessage = "response_message";
+        response.setResponseMessage(responseMessage);
+        Assert.assertEquals(responseMessage, response.getResponseMessage());
+    }
+
+    @Test
+    public void to_string() {
+        response.setResponseCode("code");
+        response.setResponseMessage("msg");
+        response.setResponseActionHanlder("rah");
+
+        ResponseAction ra = mock(ResponseAction.class);
+        when(ra.toString()).thenReturn("ra-toString");
+
+        response.setResponseAction(ra);
+
+        Assert.assertEquals(
+            "Response [responseCode=code, responseMessage=msg, responseAction=ra-toString, responseActionHanlder=rah]",
+            response.toString());
+    }
+
+}
\ No newline at end of file