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