970bc608eecb18714e9b2e0d498ef6bc320e49c3
[dmaap/messagerouter/msgrtr.git] / src / test / java / org / onap / dmaap / mr / cambria / resources / CambriaOutboundEventStreamTest.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  package org.onap.dmaap.mr.cambria.resources;
22
23 import static org.junit.Assert.*;
24
25 import org.junit.After;
26 import org.junit.Before;
27 import org.junit.Test;
28
29 import org.onap.dmaap.dmf.mr.beans.DMaaPContext;
30 import org.onap.dmaap.dmf.mr.constants.CambriaConstants;
31 import org.onap.dmaap.dmf.mr.resources.CambriaOutboundEventStream;
32
33 public class CambriaOutboundEventStreamTest {
34
35         private CambriaOutboundEventStream coes = null;
36         
37         @Before
38         public void setUp() throws Exception {
39                 coes = new CambriaOutboundEventStream.Builder(null).timeout(10).limit(1).filter(CambriaConstants.kNoFilter)
40                                 .pretty(false).withMeta(true).build();
41                 DMaaPContext ctx = new DMaaPContext();
42                 //ctx.set...
43                 coes.setDmaapContext(ctx);
44                 coes.setTopic(null);
45                 coes.setTransEnabled(true);
46                 coes.setTopicStyle(true);
47         }
48
49         @After
50         public void tearDown() throws Exception {
51         }
52
53         @Test
54         public void testGetSentCount() {
55                 int sentCount = coes.getSentCount();
56                 assertTrue("Doesn't match, got " + sentCount, sentCount==0);;
57         }
58
59         @Test
60         public void testWrite() {
61                 //fail("Not yet implemented");
62         }
63
64         @Test
65         public void testForEachMessage() {
66                 //fail("Not yet implemented");
67         }
68
69         @Test
70         public void testGetDmaapContext() {
71                 DMaaPContext ctx = coes.getDmaapContext();
72                 
73                 assertNotNull(ctx);
74         }
75
76         @Test
77         public void testSetDmaapContext() {
78                 DMaaPContext ctx = new DMaaPContext();
79                 coes.setDmaapContext(ctx);
80                 assertTrue(ctx.equals(coes.getDmaapContext()));
81         }
82
83         @Test
84         public void testGetTopic() {
85                 coes.getTopic();
86                 assertTrue(true);
87         }
88
89         @Test
90         public void testSetTopic() {
91                 //fail("Not yet implemented");
92         }
93
94         @Test
95         public void testSetTopicStyle() {
96                 coes.setTopicStyle(true);
97                 assertTrue(true);
98         }
99
100         @Test
101         public void testSetTransEnabled() {
102                 coes.setTransEnabled(true);
103                 assertTrue(true);
104         }
105
106 }