37170f07730539bd227581473712b605604e56a5
[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.policy.utils.BusConsumer;
31 import org.onap.policy.utils.BusPublisher;
32
33 import com.att.nsa.mr.client.MRClient.MRApiException;
34
35 public class BusTest {
36     
37     @Test 
38     public void busPublisherTest(){
39         BusPublisher bus = new BusPublisher.DmaapPublisherWrapper(Arrays.asList("test"), "test", "test", "test");
40         assertTrue(bus.send("test123", "Hello World!"));
41         assertEquals("DmaapPublisherWrapper [publisher.getAuthDate()=null, publisher.getAuthKey()=null, publisher.getHost()=test, publisher.getProtocolFlag()=HTTPAAF, publisher.getUsername()=test, publisher.getPendingMessageCount()=1]",bus.toString());
42         bus.close();
43     }
44     
45     @Test (expected = MRApiException.class)
46     public void busConsumerFailTest() throws MalformedURLException, MRApiException{
47         new BusConsumer.DmaapConsumerWrapper(Arrays.asList("test"), "test", "test", "test", "test", "test", 1, 1).fetch();
48     }
49     
50     @Test
51     public void busConsumerTest() throws MalformedURLException, MRApiException{
52         BusConsumer bus = new BusConsumer.DmaapConsumerWrapper(Arrays.asList("test"), "test", "test", "test", "test", "test", 1, 1);
53         assertEquals(bus.toString(),"DmaapConsumerWrapper [consumer.getAuthDate()=null, consumer.getAuthKey()=null, consumer.getHost()=test:3904, consumer.getProtocolFlag()=HTTPAAF, consumer.getUsername()=test]");
54         bus.close();
55     }
56
57 }