Added oparent to sdc main
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / servlets / AttributeServletTest.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 javax.servlet.http.HttpServletRequest;
24 import javax.ws.rs.core.Response;
25
26 import org.junit.Test;
27 import org.openecomp.sdc.be.model.PropertyDefinition;
28 import org.openecomp.sdc.exception.ResponseFormat;
29
30 import com.google.common.base.Equivalence.Wrapper;
31
32 public class AttributeServletTest {
33
34         private AttributeServlet createTestSubject() {
35                 return new AttributeServlet();
36         }
37
38         
39         @Test
40         public void testCreateAttribute() throws Exception {
41                 AttributeServlet testSubject;
42                 String resourceId = "";
43                 String data = "";
44                 HttpServletRequest request = null;
45                 String userId = "";
46                 Response result;
47
48                 // default test
49                 testSubject = createTestSubject();
50         }
51
52         
53         @Test
54         public void testUpdateAttribute() throws Exception {
55                 AttributeServlet testSubject;
56                 String resourceId = "";
57                 String attributeId = "";
58                 String data = "";
59                 HttpServletRequest request = null;
60                 String userId = "";
61                 Response result;
62
63                 // default test
64                 testSubject = createTestSubject();
65         }
66
67         
68         @Test
69         public void testDeleteAttribute() throws Exception {
70                 AttributeServlet testSubject;
71                 String resourceId = "";
72                 String attributeId = "";
73                 HttpServletRequest request = null;
74                 String userId = "";
75                 Response result;
76
77                 // default test
78                 testSubject = createTestSubject();
79         }
80
81         
82         @Test
83         public void testBuildAttributeFromString() throws Exception {
84         AttributeServlet testSubject;String data = "";
85         Wrapper<PropertyDefinition> attributesWrapper = null;
86         Wrapper<ResponseFormat> errorWrapper = null;
87         
88         
89         // default test
90         }
91 }