be71689bb4dd64212fdecbe68842a9e03e1170f8
[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  * APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Amdocs
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 package org.openecomp.appc.adapter.messaging.dmaap;
24
25
26 import org.junit.Assert;
27 import org.junit.BeforeClass;
28 import org.junit.Test;
29 import org.openecomp.appc.adapter.message.Consumer;
30 import org.openecomp.appc.adapter.messaging.dmaap.http.HttpDmaapConsumerImpl;
31 import org.openecomp.appc.adapter.messaging.dmaap.impl.DmaapConsumerImpl;
32 import org.openecomp.appc.configuration.Configuration;
33 import org.openecomp.appc.configuration.ConfigurationFactory;
34 import org.junit.Ignore;
35
36 import java.util.Arrays;
37 import java.util.List;
38
39 /**
40  * Must have a DMaaP cluster or simulator up and running
41  * Update the hostname, topic, client properties in
42  * resources/org/openecomp/appc/default.properties
43  *
44  */
45 public class TestDmaapConsuming {
46
47     private static Consumer dmaapConsumer;
48     private static Consumer httpConsumer;
49
50     @BeforeClass
51     public static void setUp() {
52
53         Configuration configuration = ConfigurationFactory.getConfiguration();
54
55         List<String> hosts = Arrays.asList(configuration.getProperty("poolMembers").split(","));
56         String topic = configuration.getProperty("topic.read");
57         String consumerName = configuration.getProperty("client.name");
58         String consumerId = configuration.getProperty("client.name.id");
59         String msgFilter = configuration.getProperty("message.filter");
60         String user = configuration.getProperty("dmaap.appc.username");
61         String password = configuration.getProperty("dmaap.appc.password");
62
63         httpConsumer = new HttpDmaapConsumerImpl(hosts, topic, consumerName, consumerId, msgFilter);
64         dmaapConsumer = new DmaapConsumerImpl(hosts, topic, consumerName, consumerId,user,password,msgFilter);
65     }
66
67     @Test
68     @Ignore
69     public void testHttpFetchMessages() {
70         testFetchMessages(httpConsumer);
71     }
72
73      @Test
74      @Ignore
75     public void testFetchMessages() {
76         testFetchMessages(dmaapConsumer);
77     }
78
79     private void testFetchMessages(Consumer consumer) {
80         List<String> messages = consumer.fetch(1000, 100);
81         Assert.assertNotNull(messages);
82         Assert.assertFalse(messages.isEmpty());
83     }
84
85 }