bump the version
[dmaap/messagerouter/msgrtr.git] / src / test / java / org / onap / dmaap / mr / cambria / metabroker / BrokerImplTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 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
21
22  package org.onap.dmaap.mr.cambria.metabroker;
23
24 import static org.junit.Assert.*;
25
26 import org.junit.After;
27 import org.junit.Before;
28 import org.junit.Test;
29
30 import org.onap.dmaap.dmf.mr.CambriaApiException;
31 import org.onap.dmaap.dmf.mr.metabroker.Broker.TopicExistsException;
32 import com.att.nsa.configs.ConfigDbException;
33 import com.att.nsa.security.ReadWriteSecuredResource.AccessDeniedException;
34
35 public class BrokerImplTest {
36
37         @Before
38         public void setUp() throws Exception {
39         }
40
41         @After
42         public void tearDown() throws Exception {
43         }
44
45         @Test
46         public void testGetOwners() {
47
48                 try {
49                         new BrokerImpl().getAllTopics();
50                 } catch (ConfigDbException e) {
51                         // TODO Auto-generated catch block
52                         e.printStackTrace();
53                 }
54
55                 assertTrue(true);
56         }
57
58         @Test
59         public void testGetTopic() {
60
61                 try {
62                         new BrokerImpl().getTopic("topicName");
63                 } catch (ConfigDbException e) {
64                         // TODO Auto-generated catch block
65                         e.printStackTrace();
66                 }
67
68                 assertTrue(true);
69
70         }
71
72         @Test
73         public void testCreateTopic() {
74
75                 try {
76                         new BrokerImpl().createTopic("topicName", "testing topic", "owner123", 3, 3, true);
77
78                 } catch (CambriaApiException e) {
79                         // TODO Auto-generated catch block
80                         e.printStackTrace();
81                 } catch (TopicExistsException e) {
82                         // TODO Auto-generated catch block
83                         e.printStackTrace();
84                 }
85
86                 assertTrue(true);
87
88         }
89
90         @Test
91         public void testDeleteTopic() {
92
93                 try {
94                         new BrokerImpl().deleteTopic("topicName");
95                 } catch (CambriaApiException e) {
96                         // TODO Auto-generated catch block
97                         e.printStackTrace();
98                 } catch (AccessDeniedException e) {
99                         // TODO Auto-generated catch block
100                         e.printStackTrace();
101                 } catch (TopicExistsException e) {
102                         // TODO Auto-generated catch block
103                         e.printStackTrace();
104                 }
105
106                 assertTrue(true);
107
108         }
109 }