28c2bc4e23257a11b91c80f68804969cd700b252
[appc.git] / appc-adapters / appc-dmaap-adapter / appc-dmaap-adapter-bundle / src / test / java / org / openecomp / appc / adapter / messaging / dmaap / TestDmaapConsuming.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.adapter.messaging.dmaap;
26
27
28 import org.junit.Assert;
29 import org.junit.BeforeClass;
30 import org.junit.Test;
31 import org.onap.appc.adapter.message.Consumer;
32 import org.onap.appc.adapter.messaging.dmaap.http.HttpDmaapConsumerImpl;
33 import org.onap.appc.adapter.messaging.dmaap.impl.DmaapConsumerImpl;
34 import org.onap.appc.configuration.Configuration;
35 import org.onap.appc.configuration.ConfigurationFactory;
36 import org.junit.Ignore;
37
38 import java.util.Arrays;
39 import java.util.List;
40
41 /**
42  * Must have a DMaaP cluster or simulator up and running
43  * Update the hostname, topic, client properties in
44  * resources/org/onap/appc/default.properties
45  *
46  */
47 public class TestDmaapConsuming {
48
49     private static Consumer dmaapConsumer;
50     private static Consumer httpConsumer;
51
52     @BeforeClass
53     public static void setUp() {
54
55         Configuration configuration = ConfigurationFactory.getConfiguration();
56
57         List<String> hosts = Arrays.asList(configuration.getProperty("poolMembers").split(","));
58         String topic = configuration.getProperty("topic.read");
59         String consumerName = configuration.getProperty("client.name");
60         String consumerId = configuration.getProperty("client.name.id");
61         String msgFilter = configuration.getProperty("message.filter");
62         String user = configuration.getProperty("dmaap.appc.username");
63         String password = configuration.getProperty("dmaap.appc.password");
64
65         httpConsumer = new HttpDmaapConsumerImpl(hosts, topic, consumerName, consumerId, msgFilter);
66         dmaapConsumer = new DmaapConsumerImpl(hosts, topic, consumerName, consumerId,user,password,msgFilter);
67     }
68
69     @Test
70     @Ignore
71     public void testHttpFetchMessages() {
72         testFetchMessages(httpConsumer);
73     }
74
75      @Test
76      @Ignore
77     public void testFetchMessages() {
78         testFetchMessages(dmaapConsumer);
79     }
80
81     private void testFetchMessages(Consumer consumer) {
82         List<String> messages = consumer.fetch(1000, 100);
83         Assert.assertNotNull(messages);
84         Assert.assertFalse(messages.isEmpty());
85     }
86
87 }