Refactoring Consolidation Service
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / servlets / ElementServletTest.java
1 package org.openecomp.sdc.be.servlets;
2
3 import java.util.List;
4
5 import javax.servlet.http.HttpServletRequest;
6 import javax.ws.rs.core.Response;
7
8 import org.junit.Test;
9 import org.openecomp.sdc.be.datatypes.enums.OriginTypeEnum;
10
11 public class ElementServletTest {
12
13         private ElementServlet createTestSubject() {
14                 return new ElementServlet();
15         }
16
17         
18         @Test
19         public void testGetComponentCategories() throws Exception {
20                 ElementServlet testSubject;
21                 String componentType = "";
22                 String userId = "";
23                 HttpServletRequest request = null;
24                 Response result;
25
26                 // default test
27                 testSubject = createTestSubject();
28                 
29         }
30
31         
32         @Test
33         public void testGetAllCategories() throws Exception {
34                 ElementServlet testSubject;
35                 HttpServletRequest request = null;
36                 String userId = "";
37                 Response result;
38
39                 // default test
40                 testSubject = createTestSubject();
41                 
42         }
43
44         
45         @Test
46         public void testCreateComponentCategory() throws Exception {
47                 ElementServlet testSubject;
48                 String componentType = "";
49                 String data = "";
50                 HttpServletRequest request = null;
51                 String userId = "";
52                 Response result;
53
54                 // default test
55                 testSubject = createTestSubject();
56                 
57         }
58
59         
60         @Test
61         public void testDeleteComponentCategory() throws Exception {
62                 ElementServlet testSubject;
63                 String categoryUniqueId = "";
64                 String componentType = "";
65                 HttpServletRequest request = null;
66                 String userId = "";
67                 Response result;
68
69                 // default test
70                 testSubject = createTestSubject();
71                 
72         }
73
74         
75         @Test
76         public void testCreateComponentSubCategory() throws Exception {
77                 ElementServlet testSubject;
78                 String componentType = "";
79                 String categoryId = "";
80                 String data = "";
81                 HttpServletRequest request = null;
82                 String userId = "";
83                 Response result;
84
85                 // default test
86                 testSubject = createTestSubject();
87                 
88         }
89
90         
91         @Test
92         public void testDeleteComponentSubCategory() throws Exception {
93                 ElementServlet testSubject;
94                 String categoryUniqueId = "";
95                 String subCategoryUniqueId = "";
96                 String componentType = "";
97                 HttpServletRequest request = null;
98                 String userId = "";
99                 Response result;
100
101                 // default test
102                 testSubject = createTestSubject();
103                 
104         }
105
106         
107         @Test
108         public void testCreateComponentGrouping() throws Exception {
109                 ElementServlet testSubject;
110                 String componentType = "";
111                 String grandParentCategoryId = "";
112                 String parentSubCategoryId = "";
113                 String data = "";
114                 HttpServletRequest request = null;
115                 String userId = "";
116                 Response result;
117
118                 // default test
119                 testSubject = createTestSubject();
120                 
121         }
122
123         
124         @Test
125         public void testDeleteComponentGrouping() throws Exception {
126                 ElementServlet testSubject;
127                 String grandParentCategoryUniqueId = "";
128                 String parentSubCategoryUniqueId = "";
129                 String groupingUniqueId = "";
130                 String componentType = "";
131                 HttpServletRequest request = null;
132                 String userId = "";
133                 Response result;
134
135                 // default test
136                 testSubject = createTestSubject();
137                 
138         }
139
140         
141         @Test
142         public void testGetTags() throws Exception {
143                 ElementServlet testSubject;
144                 HttpServletRequest request = null;
145                 String userId = "";
146                 Response result;
147
148                 // default test
149                 testSubject = createTestSubject();
150                 
151         }
152
153         
154         @Test
155         public void testGetPropertyScopes() throws Exception {
156                 ElementServlet testSubject;
157                 HttpServletRequest request = null;
158                 String userId = "";
159                 Response result;
160
161                 // default test
162                 testSubject = createTestSubject();
163                 
164         }
165
166         
167         @Test
168         public void testGetArtifactTypes() throws Exception {
169                 ElementServlet testSubject;
170                 HttpServletRequest request = null;
171                 String userId = "";
172                 Response result;
173
174                 // default test
175                 testSubject = createTestSubject();
176                 
177         }
178
179         
180         @Test
181         public void testGetConfiguration() throws Exception {
182                 ElementServlet testSubject;
183                 HttpServletRequest request = null;
184                 String userId = "";
185                 Response result;
186
187                 // default test
188                 testSubject = createTestSubject();
189                 
190         }
191
192         
193         @Test
194         public void testGetFollowedResourcesServices() throws Exception {
195                 ElementServlet testSubject;
196                 HttpServletRequest request = null;
197                 String userId = "";
198                 Response result;
199
200                 // default test
201                 testSubject = createTestSubject();
202                 
203         }
204
205         
206         @Test
207         public void testGetCatalogComponents() throws Exception {
208                 ElementServlet testSubject;
209                 HttpServletRequest request = null;
210                 String userId = "";
211                 List<OriginTypeEnum> excludeTypes = null;
212                 Response result;
213
214                 // default test
215                 testSubject = createTestSubject();
216                 
217         }
218
219         
220         @Test
221         public void testDeleteMarkedResources() throws Exception {
222                 ElementServlet testSubject;
223                 String componentType = "";
224                 HttpServletRequest request = null;
225                 Response result;
226
227                 // default test
228                 testSubject = createTestSubject();
229                 
230         }
231
232         
233         @Test
234         public void testGetListOfCsars() throws Exception {
235                 ElementServlet testSubject;
236                 HttpServletRequest request = null;
237                 Response result;
238
239                 // default test
240                 testSubject = createTestSubject();
241                 
242         }
243 }