CSIT Fix for SDC-2585
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / servlets / ConsumerServletTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.be.servlets;
22
23 import static org.mockito.Mockito.mock;
24
25 import javax.servlet.ServletContext;
26 import javax.servlet.http.HttpServletRequest;
27 import javax.ws.rs.core.Response;
28
29 import org.junit.Test;
30 import org.openecomp.sdc.be.components.impl.ComponentInstanceBusinessLogic;
31 import org.openecomp.sdc.be.components.impl.ConsumerBusinessLogic;
32 import org.openecomp.sdc.be.components.impl.GroupBusinessLogic;
33 import org.openecomp.sdc.be.impl.ComponentsUtils;
34 import org.openecomp.sdc.be.model.ConsumerDefinition;
35 import org.openecomp.sdc.be.model.User;
36 import org.openecomp.sdc.be.resources.data.auditing.AuditingActionEnum;
37 import org.openecomp.sdc.be.user.UserBusinessLogic;
38 import org.openecomp.sdc.exception.ResponseFormat;
39
40 import fj.data.Either;
41
42 public class ConsumerServletTest {
43
44         private ConsumerServlet createTestSubject() {
45                 UserBusinessLogic userBusinessLogic = mock(UserBusinessLogic.class);
46                 ComponentsUtils componentsUtils = mock(ComponentsUtils.class);
47                 ConsumerBusinessLogic consumerBusinessLogic = mock(ConsumerBusinessLogic.class);
48                 return new ConsumerServlet(userBusinessLogic, componentsUtils, consumerBusinessLogic);
49         }
50
51         
52         @Test
53         public void testCreateConsumer() throws Exception {
54                 ConsumerServlet testSubject;
55                 String data = "";
56                 HttpServletRequest request = null;
57                 String userId = "";
58                 Response result;
59
60                 // default test
61                 testSubject = createTestSubject();
62         }
63
64         
65         @Test
66         public void testGetConsumer() throws Exception {
67                 ConsumerServlet testSubject;
68                 String consumerId = "";
69                 HttpServletRequest request = null;
70                 String userId = "";
71                 Response result;
72
73                 // default test
74                 testSubject = createTestSubject();
75         }
76
77         
78         @Test
79         public void testDeleteConsumer() throws Exception {
80                 ConsumerServlet testSubject;
81                 String consumerId = "";
82                 HttpServletRequest request = null;
83                 String userId = "";
84                 Response result;
85
86                 // default test
87                 testSubject = createTestSubject();
88         }
89
90         
91         @Test
92         public void testGetConsumerBL() throws Exception {
93                 ConsumerServlet testSubject;
94                 ServletContext context = null;
95                 ConsumerBusinessLogic result;
96
97                 // default test
98                 testSubject = createTestSubject();
99         }
100
101         
102         @Test
103         public void testConvertJsonToObject() throws Exception {
104                 ConsumerServlet testSubject;
105                 String data = "";
106                 User user = null;
107                 AuditingActionEnum actionEnum = null;
108                 Either<ConsumerDefinition, ResponseFormat> result;
109
110                 // default test
111                 testSubject = createTestSubject();
112         }
113 }