Unit test for Workflow Management API classes 09/34909/2
authorshubhada <SV00449682@techmahindra.com>
Fri, 9 Mar 2018 07:17:12 +0000 (12:47 +0530)
committerTakamune Cho <tc012c@att.com>
Fri, 9 Mar 2018 20:27:12 +0000 (20:27 +0000)
Unit test for Workflow Management API classes

Sonar Link:
https://sonar.onap.org/code?id=org.onap.appc%3Aappc&selected=org.onap.appc%3Aappc-workflow-management-api

Change-Id: I641d4b14d213f8369d0b07c92feee49dadbcf70f
Issue-ID: APPC-716
Signed-off-by: shubhada <SV00449682@techmahindra.com>
appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowExistsOutput.java [new file with mode: 0644]
appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowRequest.java [new file with mode: 0644]
appc-dispatcher/appc-workflow-management/appc-workflow-management-api/src/test/java/org/onap/appc/workflow/objects/TestWorkflowResponse.java [new file with mode: 0644]

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 (file)
index 0000000..3cbf825
--- /dev/null
@@ -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 (file)
index 0000000..aa6fb6b
--- /dev/null
@@ -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 (file)
index 0000000..2afa4ad
--- /dev/null
@@ -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"));
+    }
+}