[DMAAP-BC] Fix failing jenkins
[dmaap/buscontroller.git] / dmaap-bc / src / test / java / org / onap / dmaap / dbcapi / service / Dr_PubServiceTest.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.service;
21
22 import static org.junit.Assert.assertTrue;
23
24 import java.util.ArrayList;
25 import java.util.List;
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.onap.dmaap.dbcapi.model.ApiError;
29 import org.onap.dmaap.dbcapi.model.DR_Pub;
30 import org.onap.dmaap.dbcapi.model.DcaeLocation;
31 import org.onap.dmaap.dbcapi.model.Feed;
32 import org.onap.dmaap.dbcapi.testframework.ReflectionHarness;
33
34 public class Dr_PubServiceTest {
35
36         ReflectionHarness rh = new ReflectionHarness();
37
38         DR_PubService ns;
39         FeedService fs;
40
41         @Before
42         public void setUp() throws Exception {
43                 System.setProperty("ConfigFile", "src/test/resources/dmaapbc.properties");
44                 ns = new DR_PubService();
45                 fs = new FeedService();
46         }
47
48
49         @Test
50         public void test1() {
51                 rh.reflect( "org.onap.dmaap.dbcapi.service.DR_PubService", "get", null );
52         }
53
54         @Test
55         public void test2() {
56                 String v = "Validate";
57                 rh.reflect( "org.onap.dmaap.dbcapi.service.DR_PubService", "set", v );
58         }
59
60         @Test
61         public void test3() {
62                 String locname = "central-demo";
63
64                 DcaeLocationService dls = new DcaeLocationService();
65                 DcaeLocation loc = new DcaeLocation( "CLLI1234", "central-onap", locname, "aZone", "10.10.10.0/24" );
66                 dls.addDcaeLocation( loc );
67
68                 ApiError err = new ApiError();
69                 Feed f = new Feed( "aTest", "1.0", "a unit test", "dgl", "unrestricted" );
70                 f = fs.addFeed( f,      err );
71
72                 assertTrue( f != null );
73                 DR_Pub node = new DR_Pub( locname, "aUser", "aPwd", f.getFeedId(), "pubId01" );
74                 DR_Pub n2 = ns.addDr_Pub( node );       
75                 DR_Pub node2 = new DR_Pub( locname, "aUser", "aPwd", f.getFeedId() );
76                 n2 = ns.addDr_Pub( node2 );     
77
78                 if ( n2 != null ) {
79                         n2 = ns.getDr_Pub( n2.getPubId(),  err );
80                 }
81
82                 List<DR_Pub> l = ns.getAllDr_Pubs();
83                 if ( n2 != null ) {
84                         n2 = ns.updateDr_Pub( n2 );
85                 }
86
87                 n2 = ns.removeDr_Pub( n2.getPubId(),  err );
88         }
89
90         @Test
91         public void test4() {
92                 ArrayList<DR_Pub> l = ns.getDr_PubsByFeedId( "1" );
93         }
94 }