Automated test coverage code
[dmaap/dbcapi.git] / src / test / java / org / onap / dmaap / dbcapi / model / MRClientTest.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 org.junit.After;
25 import org.junit.Before;
26 import org.junit.Test;
27
28
29 public class MRClientTest {
30
31         private static final String  fmt = "%24s: %s%n";
32
33         ReflectionHarness rh = new ReflectionHarness();
34
35         String d, t, f, c, m;
36
37         @Before
38         public void setUp() throws Exception {
39                 d = "central-onap";
40                 t = "org.onap.dmaap.interestingTopic";
41                 f = "mrc.onap.org:3904/events/org.onap.dmaap.interestingTopic";
42                 c = "publisher";
43                 m = "m12345";
44         }
45
46         @After
47         public void tearDown() throws Exception {
48         }
49
50
51         @Test
52         public void test1() {
53
54                 // can't use simple reflection to test for null since null constructor initializes some fields.
55                 //rh.reflect( "org.onap.dmaap.dbcapi.model.MR_Client", "get", null );   
56                 // so brute force instead...
57                 String[] a = { "put", "view" };
58                 MR_Client m = new MR_Client();
59
60
61                 assertTrue( null ==  m.getDcaeLocationName() );
62                 assertTrue( null ==  m.getFqtn() );
63                 assertTrue( null ==  m.getClientRole() );
64                 assertTrue( null ==  m.getAction() );
65         
66         }
67
68         @Test
69         public void test2() {
70                 String[] a = { "put", "view" };
71                 MR_Client m = new MR_Client( d, f, c, a );
72
73
74                 assertTrue( d.equals( m.getDcaeLocationName() ));
75                 assertTrue( f.equals( m.getFqtn() ));
76                 assertTrue( c.equals( m.getClientRole() ));
77                 String[] ma = m.getAction();
78                 assertTrue( a.length == ma.length );
79                 for( int i = 0; i < a.length; i++ ) {
80                         assertTrue( a[i].equals( ma[i] ) );
81                 }
82         }
83
84         @Test
85         public void test3() {
86
87                 String v = "Validate";
88                 rh.reflect( "org.onap.dmaap.dbcapi.model.MR_Client", "set", v );
89         }
90
91 }