From 55f9e7db829f1d8d01a71a8e44388f2c4f49d004 Mon Sep 17 00:00:00 2001 From: "George, Lina (lg941u)" Date: Mon, 8 Jan 2018 16:38:33 -0500 Subject: Updates to config flow-controller bundle Issue-ID: APPC-378 Change-Id: Ie2d649c54abac69d721e60bc64ab9fa23eef5ca0 Signed-off-by: George, Lina (lg941u) --- .../executor/node/FlowControlDBServiceTest.java | 345 +++++++++++---------- 1 file changed, 173 insertions(+), 172 deletions(-) (limited to 'appc-config/appc-flow-controller/provider/src/test/java') diff --git a/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/executor/node/FlowControlDBServiceTest.java b/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/executor/node/FlowControlDBServiceTest.java index 4c44e0d86..1876e2aa3 100644 --- a/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/executor/node/FlowControlDBServiceTest.java +++ b/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/executor/node/FlowControlDBServiceTest.java @@ -1,172 +1,173 @@ -/*- - * ============LICENSE_START======================================================= - * ONAP : APPC - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. - * ================================================================================ - * Copyright (C) 2017 Amdocs - * ============================================================================= - * 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. - * - * ECOMP is a trademark and service mark of AT&T Intellectual Property. - * ============LICENSE_END========================================================= - */ - -package org.onap.appc.flow.executor.node; - -import static org.mockito.Matchers.any; -import static org.mockito.Matchers.anyBoolean; -import static org.mockito.Matchers.anyString; - -import java.util.Map; - -import org.junit.Assert; -import org.junit.Before; -import org.junit.Ignore; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mockito.Mock; -import org.onap.appc.flow.controller.data.Transaction; -import org.onap.appc.flow.controller.dbervices.FlowControlDBService; -import org.onap.ccsdk.sli.core.sli.SvcLogicContext; -import org.onap.ccsdk.sli.core.sli.SvcLogicException; -import org.onap.ccsdk.sli.core.sli.SvcLogicResource; -import org.onap.ccsdk.sli.core.sli.SvcLogicResource.QueryStatus; -import org.onap.ccsdk.sli.core.dblib.DbLibService; -import org.onap.ccsdk.sli.adaptors.resource.sql.SqlResource; -import org.powermock.api.mockito.PowerMockito; -import org.powermock.core.classloader.annotations.PrepareForTest; -import org.powermock.modules.junit4.PowerMockRunner; -import org.powermock.reflect.Whitebox; -import org.powermock.modules.junit4.PowerMockRunner; - -@PrepareForTest({ SqlResource.class, SvcLogicResource.class }) -@RunWith(PowerMockRunner.class) -public class FlowControlDBServiceTest { - -@Mock - SvcLogicResource serviceLogic; -@Mock -SqlResource sqlrs; -@Mock -QueryStatus dblibSvc ; - - private static FlowControlDBService dgGeneralDBService = FlowControlDBService.initialise(); - - private Transaction transaction;; - - @Before - public void setUp() throws Exception { - serviceLogic = new SqlResource(); - } - - - /*public final void testGetFlowReferenceData() throws Exception { - - SvcLogicContext localContext = new SvcLogicContext(); - FlowControlDBService dgGeneralDBService = FlowControlDBService.initialise(); - PowerMockito.spy(SqlResource.class); - - Map inParams = null; - //PowerMockito.doReturn(dblibSvc).when(SqlResource.class, "query"); - Whitebox.invokeMethod(SqlResource.class, "query",anyString(), anyBoolean(), anyString(), anyString(), anyString(), anyString(), any(SvcLogicContext.class)); - - dgGeneralDBService.getFlowReferenceData(localContext, inParams, localContext); - //Assert.assertEquals("SUCCESS", status); - //Assert.assertNotEquals("Error - while getting FlowReferenceData", "FAILURE", status); - - }*/ - - @Test(expected=Exception.class) - public final void testGetFlowReferenceData() throws Exception { - - SvcLogicContext localContext = new SvcLogicContext(); - FlowControlDBService dgGeneralDBService = FlowControlDBService.initialise(); - PowerMockito.spy(FlowControlDBService.class); - - - PowerMockito.doReturn(dgGeneralDBService).when(SqlResource.class, "query"); - String status = dgGeneralDBService.getDesignTimeFlowModel(localContext); - Assert.assertEquals("SUCCESS", status); - Assert.assertNotEquals("Error - while getting FlowReferenceData", "FAILURE", status); - - } - - - @Ignore("Test is taking 60 seconds") - @Test(expected=Exception.class) - public final void testGetDesignTimeFlowModel() throws Exception { - SvcLogicContext localContext = new SvcLogicContext(); - String status = dgGeneralDBService.getDesignTimeFlowModel(localContext) ; - Assert.assertEquals("SUCCESS", status); - Assert.assertNotEquals("Error - while getting FlowReferenceData", "FAILURE", status); - - - - - } - - @Ignore("Test is taking 60 seconds") - @Test(expected=Exception.class) - public final void testLoadSequenceIntoDB() throws SvcLogicException { - - - SvcLogicContext localContext = new SvcLogicContext(); - QueryStatus status = dgGeneralDBService.loadSequenceIntoDB(localContext) ; - Assert.assertEquals("SUCCESS", status); - Assert.assertNotEquals("Error - while getting FlowReferenceData", "FAILURE", status); - /*SvcLogicContext ctx = new SvcLogicContext(); - - if (serviceLogic != null && localContext != null) { - String queryString = "INSERT INTO " + FlowControllerConstants.DB_REQUEST_ARTIFACTS - + " set request_id = ' kusuma_test' , action = 'Configure', action_level = 'VNF' , vnf_type = 'vComp' , category = 'config_Template' , artifact_content = '', updated_date = sysdate() "; - Mockito.when(serviceLogic.save("SQL", false, false, queryString, null, null, localContext)) - .thenReturn(status); - Assert.assertEquals("SUCCESS", status); - Assert.assertNotEquals("Error - while getting FlowReferenceData", "FAILURE", status);*/ - - - - } - - @Test(expected=Exception.class) - public final void testPopulateModuleAndRPC() throws SvcLogicException { - SvcLogicContext localContext = new SvcLogicContext(); - SvcLogicContext ctx = new SvcLogicContext(); - String vnf_type = "test"; - dgGeneralDBService.populateModuleAndRPC(transaction, vnf_type);; - - - } - - @Ignore("Test is taking 60 seconds") - @Test(expected=Exception.class) - public final void testGetDependencyInfo() throws SvcLogicException { - SvcLogicContext localContext = new SvcLogicContext(); - String status = dgGeneralDBService.getDependencyInfo(localContext); - Assert.assertEquals("SUCCESS", status); - Assert.assertNotEquals("Error - while getting FlowReferenceData", "FAILURE", status); - - } - - @Ignore("Test is taking 60 seconds") - @Test(expected=Exception.class) - public final void testGetCapabilitiesData() throws SvcLogicException { - SvcLogicContext localContext = new SvcLogicContext(); - String status = dgGeneralDBService.getCapabilitiesData(localContext); - Assert.assertEquals("SUCCESS", status); - Assert.assertNotEquals("Error - while getting FlowReferenceData", "FAILURE", status); - - } - -} +/*- + * ============LICENSE_START======================================================= + * ONAP : APPC + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * Copyright (C) 2017 Amdocs + * ============================================================================= + * 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. + * + * ECOMP is a trademark and service mark of AT&T Intellectual Property. + * ============LICENSE_END========================================================= + */ + +package org.onap.appc.flow.executor.node; + +import static org.mockito.Matchers.any; +import static org.mockito.Matchers.anyBoolean; +import static org.mockito.Matchers.anyString; + +import java.util.Map; + +import org.junit.Assert; +import org.junit.Before; +import org.junit.Ignore; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mock; +import org.onap.appc.flow.controller.data.Transaction; +import org.onap.appc.flow.controller.dbervices.FlowControlDBService; +import org.onap.ccsdk.sli.core.sli.SvcLogicContext; +import org.onap.ccsdk.sli.core.sli.SvcLogicException; +import org.onap.ccsdk.sli.core.sli.SvcLogicResource; +import org.onap.ccsdk.sli.core.sli.SvcLogicResource.QueryStatus; +import org.onap.ccsdk.sli.core.dblib.DbLibService; +import org.onap.ccsdk.sli.adaptors.resource.sql.SqlResource; +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; +import org.powermock.reflect.Whitebox; +import org.powermock.modules.junit4.PowerMockRunner; + +@PrepareForTest({ SqlResource.class, SvcLogicResource.class }) +@RunWith(PowerMockRunner.class) +public class FlowControlDBServiceTest { + +@Mock + SvcLogicResource serviceLogic; +@Mock +SqlResource sqlrs; +@Mock +QueryStatus dblibSvc ; + + private static FlowControlDBService dgGeneralDBService = FlowControlDBService.initialise(); + + private Transaction transaction;; + + @Before + public void setUp() throws Exception { + serviceLogic = new SqlResource(); + } + + + /*public final void testGetFlowReferenceData() throws Exception { + + SvcLogicContext localContext = new SvcLogicContext(); + FlowControlDBService dgGeneralDBService = FlowControlDBService.initialise(); + PowerMockito.spy(SqlResource.class); + + Map inParams = null; + //PowerMockito.doReturn(dblibSvc).when(SqlResource.class, "query"); + Whitebox.invokeMethod(SqlResource.class, "query",anyString(), anyBoolean(), anyString(), anyString(), anyString(), anyString(), any(SvcLogicContext.class)); + + dgGeneralDBService.getFlowReferenceData(localContext, inParams, localContext); + //Assert.assertEquals("SUCCESS", status); + //Assert.assertNotEquals("Error - while getting FlowReferenceData", "FAILURE", status); + + }*/ + + @Test(expected=Exception.class) + public final void testGetFlowReferenceData() throws Exception { + + SvcLogicContext localContext = new SvcLogicContext(); + FlowControlDBService dgGeneralDBService = FlowControlDBService.initialise(); + PowerMockito.spy(FlowControlDBService.class); + + + PowerMockito.doReturn(dgGeneralDBService).when(SqlResource.class, "query"); + String status = dgGeneralDBService.getDesignTimeFlowModel(localContext); + Assert.assertEquals("SUCCESS", status); + Assert.assertNotEquals("Error - while getting FlowReferenceData", "FAILURE", status); + + } + + + @Ignore("Test is taking 60 seconds") + @Test(expected=Exception.class) + public final void testGetDesignTimeFlowModel() throws Exception { + SvcLogicContext localContext = new SvcLogicContext(); + String status = dgGeneralDBService.getDesignTimeFlowModel(localContext) ; + Assert.assertEquals("SUCCESS", status); + Assert.assertNotEquals("Error - while getting FlowReferenceData", "FAILURE", status); + + + + + } + + @Ignore("Test is taking 60 seconds") + @Test(expected=Exception.class) + public final void testLoadSequenceIntoDB() throws SvcLogicException { + + + SvcLogicContext localContext = new SvcLogicContext(); + QueryStatus status = dgGeneralDBService.loadSequenceIntoDB(localContext) ; + Assert.assertEquals("SUCCESS", status); + Assert.assertNotEquals("Error - while getting FlowReferenceData", "FAILURE", status); + /*SvcLogicContext ctx = new SvcLogicContext(); + + if (serviceLogic != null && localContext != null) { + String queryString = "INSERT INTO " + FlowControllerConstants.DB_REQUEST_ARTIFACTS + + " set request_id = ' kusuma_test' , action = 'Configure', action_level = 'VNF' , vnf_type = 'vComp' , category = 'config_Template' , artifact_content = '', updated_date = sysdate() "; + Mockito.when(serviceLogic.save("SQL", false, false, queryString, null, null, localContext)) + .thenReturn(status); + Assert.assertEquals("SUCCESS", status); + Assert.assertNotEquals("Error - while getting FlowReferenceData", "FAILURE", status);*/ + + + + } + + @Ignore + @Test(expected=Exception.class) + public final void testPopulateModuleAndRPC() throws Exception { + SvcLogicContext localContext = new SvcLogicContext(); + SvcLogicContext ctx = new SvcLogicContext(); + String vnf_type = "test"; + dgGeneralDBService.populateModuleAndRPC(transaction, vnf_type);; + + + } + + @Ignore("Test is taking 60 seconds") + @Test(expected=Exception.class) + public final void testGetDependencyInfo() throws SvcLogicException { + SvcLogicContext localContext = new SvcLogicContext(); + String status = dgGeneralDBService.getDependencyInfo(localContext); + Assert.assertEquals("SUCCESS", status); + Assert.assertNotEquals("Error - while getting FlowReferenceData", "FAILURE", status); + + } + + @Ignore("Test is taking 60 seconds") + @Test(expected=Exception.class) + public final void testGetCapabilitiesData() throws SvcLogicException { + SvcLogicContext localContext = new SvcLogicContext(); + String status = dgGeneralDBService.getCapabilitiesData(localContext); + Assert.assertEquals("SUCCESS", status); + Assert.assertNotEquals("Error - while getting FlowReferenceData", "FAILURE", status); + + } + +} -- cgit 1.2.3-korg