aboutsummaryrefslogtreecommitdiffstats
path: root/appc-dispatcher/appc-workflow-management
diff options
context:
space:
mode:
Diffstat (limited to 'appc-dispatcher/appc-workflow-management')
-rw-r--r--appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowExistsOutput.java89
-rw-r--r--appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowRequest.java38
-rw-r--r--appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowResponse.java38
3 files changed, 165 insertions, 0 deletions
diff --git a/appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowExistsOutput.java b/appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowExistsOutput.java
new file mode 100644
index 000000000..3cbf82544
--- /dev/null
+++ b/appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowExistsOutput.java
@@ -0,0 +1,89 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : APPC
+* ================================================================================
+* Copyright 2018 TechMahindra
+*=================================================================================
+* 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.workflow.objects;
+
+import static org.junit.Assert.*;
+
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+public class TestWorkflowExistsOutput {
+ private WorkflowExistsOutput workflowExistsOutput;
+
+ private WorkflowExistsOutput workflowExistsOutput1;
+ @Before
+ public void SetUp() {
+ workflowExistsOutput=new WorkflowExistsOutput();
+ workflowExistsOutput1=new WorkflowExistsOutput(true,true);
+ }
+
+ @Test
+ public void testGetWorkflowName() {
+ workflowExistsOutput.setWorkflowName("workflowName");
+ Assert.assertNotNull(workflowExistsOutput.getWorkflowName());
+ Assert.assertEquals(workflowExistsOutput.getWorkflowName(), "workflowName");
+ }
+
+ @Test
+ public void testGetWorkflowVersion() {
+ workflowExistsOutput.setWorkflowVersion("1.0");
+ Assert.assertNotNull(workflowExistsOutput.getWorkflowVersion());
+ Assert.assertEquals(workflowExistsOutput.getWorkflowVersion(), "1.0");
+ }
+
+ @Test
+ public void testGetWorkflowModule() {
+ workflowExistsOutput.setWorkflowModule("appc");
+ Assert.assertNotNull(workflowExistsOutput.getWorkflowModule());
+ Assert.assertEquals(workflowExistsOutput.getWorkflowModule(), "appc");
+ }
+
+ @Test
+ public void testMappingExist() {
+ workflowExistsOutput.setMappingExist(true);
+ Assert.assertNotNull(workflowExistsOutput.isMappingExist());
+ Assert.assertEquals(workflowExistsOutput.isMappingExist(), true);
+ }
+
+ @Test
+ public void testDgExist() {
+ workflowExistsOutput.setDgExist(true);
+ Assert.assertNotNull(workflowExistsOutput.isDgExist());
+ Assert.assertEquals(workflowExistsOutput.isDgExist(), true);
+ }
+
+ @Test
+ public void testexists() {
+ Assert.assertNotNull(workflowExistsOutput1.exists());
+
+ }
+
+ @Test
+ public void testToString_ReturnNonEmptyString() {
+ assertNotEquals(workflowExistsOutput.toString(), "");
+ assertNotEquals(workflowExistsOutput.toString(), null);
+ }
+
+ @Test
+ public void testToString_ContainsString() {
+ assertTrue(workflowExistsOutput.toString().contains("dgExist"));
+ }
+}
diff --git a/appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowRequest.java b/appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowRequest.java
new file mode 100644
index 000000000..aa6fb6b90
--- /dev/null
+++ b/appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowRequest.java
@@ -0,0 +1,38 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : APPC
+* ================================================================================
+* Copyright 2018 TechMahindra
+*=================================================================================
+* 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.workflow.objects;
+
+import static org.junit.Assert.*;
+
+import org.junit.Test;
+
+public class TestWorkflowRequest {
+ private WorkflowRequest workflowRequest=new WorkflowRequest();
+ @Test
+ public void testToString_ReturnNonEmptyString() {
+ assertNotEquals(workflowRequest.toString(), "");
+ assertNotEquals(workflowRequest.toString(), null);
+ }
+
+ @Test
+ public void testToString_ContainsString() {
+ assertTrue(workflowRequest.toString().contains("requestContext"));
+ }
+} \ No newline at end of file
diff --git a/appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowResponse.java b/appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowResponse.java
new file mode 100644
index 000000000..2afa4adad
--- /dev/null
+++ b/appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowResponse.java
@@ -0,0 +1,38 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : APPC
+* ================================================================================
+* Copyright 2018 TechMahindra
+*=================================================================================
+* 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.workflow.objects;
+
+import static org.junit.Assert.*;
+
+import org.junit.Test;
+
+public class TestWorkflowResponse {
+ private WorkflowResponse workflowResponse=new WorkflowResponse();
+ @Test
+ public void testToString_ReturnNonEmptyString() {
+ assertNotEquals(workflowResponse.toString(), "");
+ assertNotEquals(workflowResponse.toString(), null);
+ }
+
+ @Test
+ public void testToString_ContainsString() {
+ assertTrue(workflowResponse.toString().contains("responseContext"));
+ }
+}