[DMAAP-BC] Consolidate bus controller repos
[dmaap/buscontroller.git] / dmaap-bc / src / test / java / org / onap / dmaap / dbcapi / model / FeedTest.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 import org.onap.dmaap.dbcapi.testframework.ReflectionHarness;
28
29 import java.util.ArrayList;
30
31
32 public class FeedTest {
33
34         private static final String  fmt = "%24s: %s%n";
35
36         ReflectionHarness rh = new ReflectionHarness();
37
38         String n, v, d, o, a;
39
40         @Before
41         public void setUp() throws Exception {
42                 System.setProperty("ConfigFile", "src/test/resources/dmaapbc.properties");
43                 n = "Chicken Feed";
44                 v = "1.0";
45                 d = "A daily helping of chicken eating metrics";
46                 o = "ab123";
47                 a = "Unrestricted";
48         }
49
50         @After
51         public void tearDown() throws Exception {
52         }
53
54
55         @Test
56         public void test1() {
57
58
59                 rh.reflect( "org.onap.dmaap.dbcapi.model.Feed", "get", null );  
60         
61         }
62
63         @Test
64         public void test2() {
65                 Feed t = new Feed( n, v, d, o, a );
66
67                 ArrayList<DR_Sub> subs = new ArrayList<DR_Sub>();
68                 DR_Sub sub = new DR_Sub( "central", "user", "pwd", "22", "server.onap.org/deliv", "log.onap.org/logs", true );
69                 subs.add( sub );
70                 t.setSubs( subs );
71
72                 assertTrue( n.equals( t.getFeedName() ));
73                 assertTrue( v.equals( t.getFeedVersion() ));
74                 assertTrue( d.equals( t.getFeedDescription() ));
75                 assertTrue( o.equals( t.getOwner() ));
76                 assertTrue( a.equals( t.getAsprClassification() ) );
77                 assertTrue( ! t.isSuspended() );
78         }
79
80         @Test
81         public void test3() {
82
83                 String v = "Validate";
84                 rh.reflect( "org.onap.dmaap.dbcapi.model.Feed", "set", v );
85         }
86
87         @Test
88         public void test4() {
89                 String s = String.format( "{ \"%s\": \"%s\", \"%s\": \"%s\", \"%s\": \"%s\", \"%s\": \"%s\", \"%s\": false, \"%s\": { \"%s\": \"%s\", \"%s\": \"%s\", \"%s\": \"%s\" }, \"%s\": { \"%s\": \"%s\", \"%s\": [ { \"%s\": \"%s\", \"%s\": \"%s\" } ] } }",
90                                 "name", n,
91                                 "version", v,
92                                 "description", d,
93                                 "publisher", a,
94                                 "suspend", 
95                                 "links",
96                                         "publish", "https://feed.onap.org/publish/22",
97                                         "subscribe" , Feed.getSubProvURL( "22" ),
98                                         "log" , "https://feed.onap.org/log/22",
99                                 "authorization",
100                                         "classification", a,
101                                         "endpoint_ids" , "id", "king", "password", "henry" );
102
103
104                 Feed t = new Feed( s );
105
106                 assertTrue( n.equals( t.getFeedName() ));
107                 assertTrue( v.equals( t.getFeedVersion() ));
108                 assertTrue( d.equals( t.getFeedDescription() ));
109                 assertTrue( a.equals( t.getAsprClassification() ) );
110                 assertTrue( ! t.isSuspended() );
111
112                 String o = t.toString();
113
114         }
115
116 }