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