2  * ============LICENSE_START=======================================================
 
   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
 
  12  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  23 package org.openecomp.appc.adapter.messaging.dmaap;
 
  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;
 
  36 import java.util.Arrays;
 
  37 import java.util.List;
 
  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
 
  45 public class TestDmaapProducing {
 
  47     private static Producer httpProducer;
 
  48     private static Producer dmaapProducer;
 
  51     public static void setUp() {
 
  53         Configuration configuration = ConfigurationFactory.getConfiguration();
 
  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");
 
  60         dmaapProducer = new DmaapProducerImpl(hosts, topic,user,password);
 
  61         httpProducer = new HttpDmaapProducerImpl(hosts, topic);
 
  62         httpProducer.updateCredentials(user,password);
 
  67     public void testHttpPostMessage() {
 
  68         testPostMessage(httpProducer);
 
  73     public void testPostMessages() {
 
  74         testPostMessage(dmaapProducer);
 
  77     private void testPostMessage(Producer producer) {
 
  78         Assert.assertTrue(producer.post("partition", "{\"message\": \"Hello, world!\"}"));