summaryrefslogtreecommitdiffstats
path: root/appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/FlowControlDBServiceTest.java
blob: 9b862430300c2cf7cb9541b6c26760c88f76bf9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package org.openecomp.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.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.openecomp.appc.flow.controller.data.Transaction;
import org.openecomp.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<String, String> 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);

	}

	
	@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);

		
		

	}

	@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);;
	

	}

	@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);
		
	}

	@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);
		
	}

}