Release patch 2.0.4
[dmaap/dbcapi.git] / 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                 n = "Chicken Feed";
43                 v = "1.0";
44                 d = "A daily helping of chicken eating metrics";
45                 o = "ab123";
46                 a = "Unrestricted";
47         }
48
49         @After
50         public void tearDown() throws Exception {
51         }
52
53
54         @Test
55         public void test1() {
56
57
58                 rh.reflect( "org.onap.dmaap.dbcapi.model.Feed", "get", null );  
59         
60         }
61
62         @Test
63         public void test2() {
64                 Feed t = new Feed( n, v, d, o, a );
65
66                 ArrayList<DR_Sub> subs = new ArrayList<DR_Sub>();
67                 DR_Sub sub = new DR_Sub( "central", "user", "pwd", "22", "server.onap.org/deliv", "log.onap.org/logs", true );
68                 subs.add( sub );
69                 t.setSubs( subs );
70
71                 assertTrue( n.equals( t.getFeedName() ));
72                 assertTrue( v.equals( t.getFeedVersion() ));
73                 assertTrue( d.equals( t.getFeedDescription() ));
74                 assertTrue( o.equals( t.getOwner() ));
75                 assertTrue( a.equals( t.getAsprClassification() ) );
76                 assertTrue( ! t.isSuspended() );
77         }
78
79         @Test
80         public void test3() {
81
82                 String v = "Validate";
83                 rh.reflect( "org.onap.dmaap.dbcapi.model.Feed", "set", v );
84         }
85
86         @Test
87         public void test4() {
88                 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\" } ] } }",
89                                 "name", n,
90                                 "version", v,
91                                 "description", d,
92                                 "publisher", a,
93                                 "suspend", 
94                                 "links",
95                                         "publish", "https://feed.onap.org/publish/22",
96                                         "subscribe" , Feed.getSubProvURL( "22" ),
97                                         "log" , "https://feed.onap.org/log/22",
98                                 "authorization",
99                                         "classification", a,
100                                         "endpoint_ids" , "id", "king", "password", "henry" );
101
102
103                 Feed t = new Feed( s );
104
105                 assertTrue( n.equals( t.getFeedName() ));
106                 assertTrue( v.equals( t.getFeedVersion() ));
107                 assertTrue( d.equals( t.getFeedDescription() ));
108                 assertTrue( a.equals( t.getAsprClassification() ) );
109                 assertTrue( ! t.isSuspended() );
110
111                 String o = t.toString();
112
113         }
114
115 }