Update dmaap 1.1.9 changes
[policy/engine.git] / PolicyEngineUtils / src / test / java / org / onap / policy / utils / test / BusTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineUtils
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.policy.utils.test;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertTrue;
25
26 import java.net.MalformedURLException;
27 import java.util.Arrays;
28
29 import org.junit.Test;
30 import org.onap.dmaap.mr.client.MRClient.MRApiException;
31 import org.onap.policy.utils.BusConsumer;
32 import org.onap.policy.utils.BusPublisher;
33
34 public class BusTest {
35     
36     @Test 
37     public void busPublisherTest(){
38         BusPublisher bus = new BusPublisher.DmaapPublisherWrapper(Arrays.asList("test"), "test", "test", "test");
39         assertTrue(bus.send("test123", "Hello World!"));
40         assertEquals("DmaapPublisherWrapper [publisher.getAuthDate()=null, publisher.getAuthKey()=null, publisher.getHost()=test, publisher.getProtocolFlag()=HTTPAAF, publisher.getUsername()=test, publisher.getPendingMessageCount()=1]",bus.toString());
41         bus.close();
42     }
43     
44     @Test (expected = MRApiException.class)
45     public void busConsumerFailTest() throws MalformedURLException, MRApiException{
46         new BusConsumer.DmaapConsumerWrapper(Arrays.asList("test"), "test", "test", "test", "test", "test", 1, 1).fetch();
47     }
48     
49     @Test
50     public void busConsumerTest() throws MalformedURLException, MRApiException{
51         BusConsumer bus = new BusConsumer.DmaapConsumerWrapper(Arrays.asList("test"), "test", "test", "test", "test", "test", 1, 1);
52         assertEquals(bus.toString(),"DmaapConsumerWrapper [consumer.getAuthDate()=null, consumer.getAuthKey()=null, consumer.getHost()=test:3904, consumer.getProtocolFlag()=HTTPAAF, consumer.getUsername()=test]");
53         bus.close();
54     }
55
56 }