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