Automated test coverage code
[dmaap/dbcapi.git] / src / test / java / org / onap / dmaap / dbcapi / model / DRNodeTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.onap.dmaap
4  * ================================================================================
5  * Copyright (C) 2018 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 package org.onap.dmaap.dbcapi.model;
21
22 import static org.junit.Assert.*;
23
24 import java.lang.reflect.Constructor;
25 import java.lang.reflect.InvocationTargetException;
26 import java.lang.reflect.Method;
27
28 import org.junit.After;
29 import org.junit.Before;
30 import org.junit.Test;
31 public class DRNodeTest {
32         String f, d, h, v;
33
34         @Before
35         public void setUp() throws Exception {
36                 v = "1";
37                 f = "node01.onap.org";
38                 h = "zlpdrns01.cloud.onap.org";
39                 d = "central-onap";
40         }
41
42         @After
43         public void tearDown() throws Exception {
44         }
45
46
47         @Test
48         public void testDRNodeClassDefaultConstructor() {
49
50                 DR_Node t = new DR_Node();
51         
52                 assertTrue( t.getFqdn() == null  );
53                 assertTrue( t.getDcaeLocationName() == null  );
54                 assertTrue( t.getHostName() == null  );
55                 assertTrue( t.getVersion() == null  );
56         
57         }
58
59         @Test
60         public void testDRNodeClassConstructor() {
61
62                 DR_Node t = new DR_Node( f, d, h, v );
63         
64                 assertTrue( f.equals( t.getFqdn() ));
65                 assertTrue( d.equals( t.getDcaeLocationName() ));
66                 assertTrue( h.equals( t.getHostName() ));
67                 assertTrue( v.equals( t.getVersion() ));
68         
69         }
70
71         @Test
72         public void testDRNodeClassSetters() {
73
74                 DR_Node t = new DR_Node();
75
76                 t.setFqdn( f );
77                 assertTrue( f.equals( t.getFqdn() ));
78                 t.setDcaeLocationName( d );
79                 assertTrue( d.equals( t.getDcaeLocationName() ));
80                 t.setHostName( h );
81                 assertTrue( h.equals( t.getHostName() ));
82                 t.setVersion( v );
83                 assertTrue( v.equals( t.getVersion() ));
84         
85         }
86 }