Catalog alignment
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / servlets / ConfigMgrServletTest.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 com.datastax.driver.core.Configuration;
24 import org.junit.Test;
25
26 import javax.servlet.http.HttpServletRequest;
27
28 public class ConfigMgrServletTest {
29
30         private ConfigMgrServlet createTestSubject() {
31                 return new ConfigMgrServlet();
32         }
33
34         
35         @Test
36         public void testGetConfig() throws Exception {
37                 ConfigMgrServlet testSubject;
38                 HttpServletRequest request = null;
39                 String type = "";
40                 String result;
41
42                 // test 1
43                 testSubject = createTestSubject();
44                 type = null;
45
46
47                 // test 2
48                 testSubject = createTestSubject();
49                 type = "";
50
51                 // test 3
52                 testSubject = createTestSubject();
53                 type = "configuration";
54         }
55
56         
57         @Test
58         public void testSetConfig1() throws Exception {
59                 ConfigMgrServlet testSubject;
60                 HttpServletRequest request = null;
61                 Configuration configuration = null;
62                 String result;
63
64                 // default test
65                 testSubject = createTestSubject();
66         }
67
68         
69         @Test
70         public void testSetConfig2() throws Exception {
71                 ConfigMgrServlet testSubject;
72                 HttpServletRequest request = null;
73                 Configuration configuration = null;
74
75                 // default test
76                 testSubject = createTestSubject();
77         }
78
79         
80         @Test
81         public void testSetConfig3() throws Exception {
82                 ConfigMgrServlet testSubject;
83                 HttpServletRequest request = null;
84                 Configuration configuration = null;
85                 String result;
86
87                 // default test
88                 testSubject = createTestSubject();
89         }
90
91         
92         @Test
93         public void testSetConfig4() throws Exception {
94                 ConfigMgrServlet testSubject;
95                 HttpServletRequest request = null;
96                 Configuration configuration = null;
97
98                 // default test
99                 testSubject = createTestSubject();
100         }
101 }