summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkurczews <krzysztof.kurczewski@nokia.com>2018-03-30 09:53:02 +0200
committerTakamune Cho <tc012c@att.com>2018-04-03 15:34:22 +0000
commit1ea70b88e2f4eb4819e4bfcbe38ab9672588024b (patch)
treeaa382ead22e5eb07074d8acb47e8e86cfd35351e
parent81ad515289250e8e9d14989c844363c76edbe27b (diff)
Added tests for appc.flow.Response
Issue-ID: APPC-442 Change-Id: Ie42cf7a2ec83ceeed94f567874cf4a634e6bb8c9 Signed-off-by: kurczews <krzysztof.kurczewski@nokia.com>
-rw-r--r--appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/data/ResponseTest.java83
1 files changed, 83 insertions, 0 deletions
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
index 000000000..9cf5a3304
--- /dev/null
+++ b/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/data/ResponseTest.java
@@ -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