/* * Copyright (c) 2016. Dark Phoenixs (Open-Source Organization). * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.darkphoenixs.kafka.pool; import kafka.admin.TopicCommand; import kafka.server.KafkaConfig; import kafka.server.KafkaServer; import kafka.utils.MockTime; import kafka.utils.TestUtils; import kafka.utils.Time; import kafka.utils.ZkUtils; import kafka.zk.EmbeddedZookeeper; import org.I0Itec.zkclient.ZkClient; import org.apache.kafka.common.protocol.SecurityProtocol; import org.apache.kafka.common.security.JaasUtils; import org.darkphoenixs.kafka.core.KafkaMessageSender; import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.springframework.core.io.DefaultResourceLoader; import scala.Option; import java.io.File; import java.util.ArrayList; import java.util.List; import java.util.Properties; /** * The type Kafka messag new sender pool test. */ public class KafkaMessageNewSenderPoolTest { private int brokerId = 0; private String topic = "QUEUE.TEST"; private String zkConnect; private EmbeddedZookeeper zkServer; private ZkClient zkClient; private KafkaServer kafkaServer; private int port = 9999; private Properties kafkaProps; @Before public void setUp() throws Exception { zkServer = new EmbeddedZookeeper(); zkConnect = String.format("localhost:%d", zkServer.port()); ZkUtils zkUtils = ZkUtils.apply(zkConnect, 30000, 30000, JaasUtils.isZkSecurityEnabled()); zkClient = zkUtils.zkClient(); final Option<File> noFile = scala.Option.apply(null); final Option<SecurityProtocol> noInterBrokerSecurityProtocol = scala.Option .apply(null); kafkaProps = TestUtils.createBrokerConfig(brokerId, zkConnect, false, false, port, noInterBrokerSecurityProtocol, noFile, true, false, TestUtils.RandomPort(), false, TestUtils.RandomPort(), false, TestUtils.RandomPort()); kafkaProps.setProperty("auto.create.topics.enable", "true"); kafkaProps.setProperty("num.partitions", "1"); // We *must* override this to use the port we allocated (Kafka currently // allocates one port // that it always uses for ZK kafkaProps.setProperty("zookeeper.connect", this.zkConnect); KafkaConfig config = new KafkaConfig(kafkaProps); Time mock = new MockTime(); kafkaServer = TestUtils.createServer(config, mock); // create topic TopicCommand.TopicCommandOptions options = new TopicCommand.TopicCommandOptions( new String[]{"--create", "--topic", topic, "--replication-factor", "1", "--partitions", "1"}); TopicCommand.createTopic(zkUtils, options); List<KafkaServer> servers = new ArrayList<KafkaServer>(); servers.add(kafkaServer); TestUtils.waitUntilMetadataIsPropagated( scala.collection.JavaConversions.asScalaBuffer(servers), topic, 0, 5000); } @After public void tearDown() throws Exception { kafkaServer.shutdown(); zkClient.close(); zkServer.shutdown(); } @Test public void test() throws Exception { Properties properties = new Properties(); properties.setProperty("bootstrap.servers", "localhost:" + port); properties.setProperty("value.serializer", "org.apache.kafka.common.serialization.ByteArraySerializer"); properties.setProperty("key.serializer", "org.apache.kafka.common.serialization.ByteArraySerializer"); KafkaMessageNewSenderPool<byte[], byte[]> pool = new KafkaMessageNewSenderPool<byte[], byte[]>(); Assert.assertNull(pool.getConfig()); Assert.assertNotNull(pool.getProps()); Assert.assertEquals(pool.getPoolSize(), 0); Assert.assertFalse(pool.isRunning()); pool.setConfig(new DefaultResourceLoader() .getResource("kafka/producer1.properties")); pool.setConfig(new DefaultResourceLoader() .getResource("kafka/producer.properties")); pool.setProps(properties); pool.setPoolSize(10); pool.init(); Assert.assertTrue(pool.isRunning()); KafkaMessageSender<byte[], byte[]> sender = pool.getSender(); pool.returnSender(sender); pool.destroy(); Assert.assertFalse(pool.isRunning()); } }