aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkurczews <krzysztof.kurczewski@nokia.com>2018-03-30 10:03:59 +0200
committerTakamune Cho <tc012c@att.com>2018-04-03 13:56:24 +0000
commit8f661634078c57e320f7426138e812686879d963 (patch)
tree38cdc8b35842f92b653a86db738f305b344614bb
parent61de7099b0d6274eda3540866cabfed9ac80d02c (diff)
Added tests for appc.flow.ResponseAction
Change-Id: I9f4d39c609ff2069edb1634a13b10e96f08bfd7b Issue-ID: APPC-442 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/ResponseActionTest.java88
1 files changed, 88 insertions, 0 deletions
diff --git a/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/data/ResponseActionTest.java b/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/data/ResponseActionTest.java
new file mode 100644
index 000000000..cb9fa2a80
--- /dev/null
+++ b/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/data/ResponseActionTest.java
@@ -0,0 +1,88 @@
+/*-
+ * ============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 org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+public class ResponseActionTest {
+
+ private ResponseAction responseAction;
+
+ @Before
+ public void setUp() {
+ responseAction = new ResponseAction();
+ }
+
+ @Test
+ public void get_set_jump() {
+ String jump = "some_jump";
+ responseAction.setJump(jump);
+ Assert.assertEquals(jump, responseAction.getJump());
+ }
+
+ @Test
+ public void get_set_retry() {
+ String retry = "some_retry";
+ responseAction.setRetry(retry);
+ Assert.assertEquals(retry, responseAction.getRetry());
+ }
+
+ @Test
+ public void get_set_wait() {
+ String wait = "some_wait";
+ responseAction.setWait(wait);
+ Assert.assertEquals(wait, responseAction.getWait());
+ }
+
+ @Test
+ public void get_set_intermediate_message() {
+ responseAction.setIntermediateMessage(true);
+ Assert.assertTrue(responseAction.isIntermediateMessage());
+ }
+
+ @Test
+ public void get_set_ignore() {
+ responseAction.setIgnore(true);
+ Assert.assertTrue(responseAction.isIgnore());
+ }
+
+ @Test
+ public void get_set_stop() {
+ responseAction.setStop(true);
+ Assert.assertTrue(responseAction.isStop());
+ }
+
+ @Test
+ public void to_string() {
+ responseAction.setStop(true);
+ responseAction.setIntermediateMessage(true);
+ responseAction.setIgnore(true);
+ responseAction.setJump("some_jump");
+ responseAction.setRetry("some_retry");
+ responseAction.setWait("some_wait");
+ Assert.assertEquals(
+ "ResponseAction [wait=some_wait, retry=some_retry, jump=some_jump, ignore=true, stop=true, intermediateMessage=true]",
+ responseAction.toString());
+ }
+
+} \ No newline at end of file