summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-workflow/src/test/java/org/onap/portalsdk/workflow/dao/WorkflowDAOImplTest.java
blob: af3f1d08b4f65dbd63ee240120884bb1507b29a8 (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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*
 * ============LICENSE_START==========================================
 * ONAP Portal SDK
 * ===================================================================
 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
 * ===================================================================
 *
 * Unless otherwise specified, all software contained herein is licensed
 * under the Apache License, Version 2.0 (the "License");
 * you may not use this software 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.
 *
 * Unless otherwise specified, all documentation contained herein is licensed
 * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
 * you may not use this documentation except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *             https://creativecommons.org/licenses/by/4.0/
 *
 * Unless required by applicable law or agreed to in writing, documentation
 * 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.portalsdk.workflow.dao;

import java.util.ArrayList;
import java.util.List;

import org.hibernate.query.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.onap.portalsdk.core.domain.User;
import org.onap.portalsdk.workflow.models.Workflow;
import org.onap.portalsdk.workflow.models.WorkflowLite;
import org.powermock.api.mockito.PowerMockito;
import org.powermock.modules.junit4.PowerMockRunner;

@RunWith(PowerMockRunner.class)
public class WorkflowDAOImplTest {

	@InjectMocks
	private WorkflowDAOImpl workflowDAOImpl;

	@Mock
	private SessionFactory sessionFactory;

	@Test
	public void saveTest() {
		Workflow workflow = new Workflow();
		String creatorId = "123";
		Session session = PowerMockito.mock(Session.class);
		Mockito.when(sessionFactory.openSession()).thenReturn(session);
		Transaction tx = PowerMockito.mock(Transaction.class);
		Mockito.when(session.beginTransaction()).thenReturn(tx);

		Query query = PowerMockito.mock(Query.class);
		Mockito.when(session.createQuery("from User where loginId =:loginId")).thenReturn(query);
		User user = new User();
		List<User> list = new ArrayList<>();
		list.add(user);
		Mockito.when(query.list()).thenReturn(list);

		Mockito.when(session.save(workflow)).thenReturn(1L);
		Mockito.when(session.get(Workflow.class, 1l)).thenReturn(workflow);

		Workflow savedWorkflow = workflowDAOImpl.save(workflow, creatorId);

		Assert.assertNotNull(savedWorkflow);
	}

	@Test
	public void saveTestException() {
		Workflow workflow = new Workflow();
		String creatorId = "123";
		Session session = PowerMockito.mock(Session.class);
		Mockito.when(sessionFactory.openSession()).thenReturn(session);
		Transaction tx = PowerMockito.mock(Transaction.class);
		Mockito.when(session.beginTransaction()).thenReturn(tx);

		Query query = PowerMockito.mock(Query.class);
		Mockito.when(session.createQuery("from User where loginId =:loginId")).thenReturn(query);
		List<User> list = new ArrayList<>();
		Mockito.when(query.list()).thenReturn(list);

		Mockito.when(session.save(workflow)).thenReturn(1L);
		Mockito.when(session.get(Workflow.class, 1l)).thenReturn(workflow);

		Workflow savedWorkflow = workflowDAOImpl.save(workflow, creatorId);

		Assert.assertNotNull(savedWorkflow);
	}

	@Test
	public void getWorkflowsTest() {

		Session session = PowerMockito.mock(Session.class);
		Mockito.when(sessionFactory.openSession()).thenReturn(session);

		List<Workflow> workflows = new ArrayList<>();
		Workflow workflow = new Workflow();
		workflow.setId(1L);
		workflows.add(workflow);

		Query query = PowerMockito.mock(Query.class);
		Mockito.when(session.createQuery("from Workflow")).thenReturn(query);
		Mockito.when(query.list()).thenReturn(workflows);

		List<Workflow> list = workflowDAOImpl.getWorkflows();
		Assert.assertTrue(!list.isEmpty());
	}

	@Test
	public void deleteTest() {
		Long workflowId = 1L;
		Session session = PowerMockito.mock(Session.class);
		Mockito.when(sessionFactory.openSession()).thenReturn(session);
		Transaction tx = PowerMockito.mock(Transaction.class);
		Mockito.when(session.beginTransaction()).thenReturn(tx);
		Query query = PowerMockito.mock(Query.class);
		Mockito.when(session.createQuery("delete from Workflow where id =:id")).thenReturn(query);
		workflowDAOImpl.delete(workflowId);
		Assert.assertTrue(true);
	}

	@Test
	public void editTest() {
		WorkflowLite workflowLight = new WorkflowLite();
		String creatorId = "1234";

		Session session = PowerMockito.mock(Session.class);
		Mockito.when(sessionFactory.openSession()).thenReturn(session);
		Transaction tx = PowerMockito.mock(Transaction.class);
		Mockito.when(session.beginTransaction()).thenReturn(tx);
		Query query = PowerMockito.mock(Query.class);
		Mockito.when(session.createQuery("from User where loginId =:loginId")).thenReturn(query);

		User user = new User();
		List<User> list = new ArrayList<>();
		list.add(user);
		Mockito.when(query.list()).thenReturn(list);

		Mockito.when(session.get(Workflow.class, workflowLight.getId())).thenReturn(new Workflow());

		Workflow savedWorkflow = workflowDAOImpl.edit(workflowLight, creatorId);
		Assert.assertNotNull(savedWorkflow);
	}
}