Added oparent to sdc main
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / distribution / api / client / RegistrationRequestTest.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.distribution.api.client;
22
23 import org.junit.Test;
24
25 import java.util.LinkedList;
26 import java.util.List;
27
28 public class RegistrationRequestTest {
29
30         private RegistrationRequest createTestSubject() {
31                 return new RegistrationRequest("", "", false);
32         }
33         
34         @Test
35         public void testConstructor() throws Exception {
36                 List<String> distEnvEndPoints = new LinkedList<>();
37                 new RegistrationRequest("mock", "mock", distEnvEndPoints , false);
38         }
39         
40         @Test
41         public void testGetApiPublicKey() throws Exception {
42                 RegistrationRequest testSubject;
43                 String result;
44
45                 // default test
46                 testSubject = createTestSubject();
47                 result = testSubject.getApiPublicKey();
48         }
49
50         @Test
51         public void testGetDistrEnvName() throws Exception {
52                 RegistrationRequest testSubject;
53                 String result;
54
55                 // default test
56                 testSubject = createTestSubject();
57                 result = testSubject.getDistrEnvName();
58         }
59
60         @Test
61         public void testGetIsConsumerToSdcDistrStatusTopic() throws Exception {
62                 RegistrationRequest testSubject;
63                 Boolean result;
64
65                 // default test
66                 testSubject = createTestSubject();
67                 result = testSubject.getIsConsumerToSdcDistrStatusTopic();
68         }
69
70         @Test
71         public void testGetDistEnvEndPoints() throws Exception {
72                 RegistrationRequest testSubject;
73                 List<String> result;
74
75                 // default test
76                 testSubject = createTestSubject();
77                 result = testSubject.getDistEnvEndPoints();
78         }
79
80         @Test
81         public void testSetDistEnvEndPoints() throws Exception {
82                 RegistrationRequest testSubject;
83                 List<String> distEnvEndPoints = null;
84
85                 // default test
86                 testSubject = createTestSubject();
87                 testSubject.setDistEnvEndPoints(distEnvEndPoints);
88         }
89 }