diff options
author | shubhada <SV00449682@techmahindra.com> | 2018-03-09 12:47:12 +0530 |
---|---|---|
committer | Takamune Cho <tc012c@att.com> | 2018-03-09 20:27:12 +0000 |
commit | 072d9eb28f13b50058cf9a50207dce435ab88369 (patch) | |
tree | 6e4cba3701460e92a5f72eb92b8f6785df63d976 | |
parent | 014f5c23fb5062e36e019671e161340b1081411b (diff) |
Unit test for Workflow Management API classes
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>
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")); + } +} |