Updating licenses in all files
[appc.git] / appc-adapters / appc-dmaap-adapter / appc-dmaap-adapter-bundle / src / test / java / org / openecomp / appc / adapter / messaging / dmaap / TestDmaapProducing.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.Ignore;
29 import org.junit.Test;
30 import org.openecomp.appc.adapter.message.Producer;
31 import org.openecomp.appc.adapter.messaging.dmaap.http.HttpDmaapProducerImpl;
32 import org.openecomp.appc.adapter.messaging.dmaap.impl.DmaapProducerImpl;
33 import org.openecomp.appc.configuration.Configuration;
34 import org.openecomp.appc.configuration.ConfigurationFactory;
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 TestDmaapProducing {
46
47     private static Producer httpProducer;
48     private static Producer dmaapProducer;
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.write");
57         String user = configuration.getProperty("dmaap.appc.username");
58         String password = configuration.getProperty("dmaap.appc.password");
59
60         dmaapProducer = new DmaapProducerImpl(hosts, topic,user,password);
61         httpProducer = new HttpDmaapProducerImpl(hosts, topic);
62         httpProducer.updateCredentials(user,password);
63     }
64
65     @Test
66     @Ignore
67     public void testHttpPostMessage() {
68         testPostMessage(httpProducer);
69     }
70
71     @Test
72     @Ignore
73     public void testPostMessages() {
74         testPostMessage(dmaapProducer);
75     }
76
77     private void testPostMessage(Producer producer) {
78         Assert.assertTrue(producer.post("partition", "{\"message\": \"Hello, world!\"}"));
79     }
80
81 }