/** * Copyright 2016 Yahoo Inc. * * 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 com.yahoo.pulsar.client.cli; import java.net.MalformedURLException; import java.util.Properties; import java.util.concurrent.CompletableFuture; import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import org.testng.Assert; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; import com.yahoo.pulsar.broker.service.BrokerTestBase; @Test public class PulsarClientToolTest extends BrokerTestBase { @BeforeClass @Override public void setup() throws Exception { super.internalSetup(); } @AfterClass @Override public void cleanup() throws Exception { super.internalCleanup(); } @Test(timeOut = 10000) public void testInitialzation() throws MalformedURLException, InterruptedException, ExecutionException { Properties properties = new Properties(); properties.setProperty("serviceUrl", brokerUrl.toString()); properties.setProperty("useTls", "false"); String topicName = "persistent://property/ns/topic-scale-ns-0/topic"; int numberOfMessages = 10; ExecutorService executor = Executors.newSingleThreadExecutor(); CompletableFuture<Void> future = new CompletableFuture<Void>(); executor.execute(() -> { PulsarClientTool pulsarClientToolConsumer; try { pulsarClientToolConsumer = new PulsarClientTool(properties); String[] args = { "consume", "-t", "Exclusive", "-s", "sub-name", "-n", Integer.toString(numberOfMessages), "--hex", "-r", "30", topicName }; Assert.assertEquals(pulsarClientToolConsumer.run(args), 0); future.complete(null); } catch (Throwable t) { future.completeExceptionally(t); } }); PulsarClientTool pulsarClientToolProducer = new PulsarClientTool(properties); String[] args = { "produce", "--messages", "Have a nice day", "-n", Integer.toString(numberOfMessages), "-r", "20", topicName }; Assert.assertEquals(pulsarClientToolProducer.run(args), 0); future.get(); executor.shutdown(); } }