Search in sources :

Example 61 with AmqpSender

use of org.apache.activemq.transport.amqp.client.AmqpSender in project activemq-artemis by apache.

the class AmqpSendReceiveTest method testSendingAndReceivingToQueueWithDifferentAddressAndQueueName.

@Test(timeout = 60000)
public void testSendingAndReceivingToQueueWithDifferentAddressAndQueueName() throws Exception {
    String queueName = "TestQueueName";
    String address = "TestAddress";
    server.addAddressInfo(new AddressInfo(SimpleString.toSimpleString(address), RoutingType.ANYCAST));
    server.createQueue(new SimpleString(address), RoutingType.ANYCAST, new SimpleString(queueName), null, true, false);
    AmqpClient client = createAmqpClient();
    AmqpConnection connection = addConnection(client.connect());
    try {
        AmqpSession session = connection.createSession();
        AmqpSender sender = session.createSender(address);
        AmqpReceiver receiver = session.createReceiver(address);
        receiver.flow(1);
        AmqpMessage message = new AmqpMessage();
        message.setText("TestPayload");
        sender.send(message);
        AmqpMessage receivedMessage = receiver.receive(5000, TimeUnit.MILLISECONDS);
        assertNotNull(receivedMessage);
    } finally {
        connection.close();
    }
}
Also used : AmqpConnection(org.apache.activemq.transport.amqp.client.AmqpConnection) AmqpSession(org.apache.activemq.transport.amqp.client.AmqpSession) AmqpReceiver(org.apache.activemq.transport.amqp.client.AmqpReceiver) SimpleString(org.apache.activemq.artemis.api.core.SimpleString) AmqpClient(org.apache.activemq.transport.amqp.client.AmqpClient) SimpleString(org.apache.activemq.artemis.api.core.SimpleString) AmqpSender(org.apache.activemq.transport.amqp.client.AmqpSender) AmqpMessage(org.apache.activemq.transport.amqp.client.AmqpMessage) AddressInfo(org.apache.activemq.artemis.core.server.impl.AddressInfo) Test(org.junit.Test)

Example 62 with AmqpSender

use of org.apache.activemq.transport.amqp.client.AmqpSender in project activemq-artemis by apache.

the class AmqpSenderTest method doTestSenderSettlementModeIsHonored.

public void doTestSenderSettlementModeIsHonored(SenderSettleMode settleMode) throws Exception {
    AmqpClient client = createAmqpClient();
    AmqpConnection connection = addConnection(client.connect());
    AmqpSession session = connection.createSession();
    AmqpSender sender = session.createSender("queue://" + getTestName(), settleMode, ReceiverSettleMode.FIRST);
    Queue queueView = getProxyToQueue(getQueueName());
    assertNotNull(queueView);
    assertEquals(0, queueView.getMessageCount());
    assertEquals(settleMode, sender.getEndpoint().getRemoteSenderSettleMode());
    AmqpMessage message = new AmqpMessage();
    message.setText("Test-Message");
    sender.send(message);
    sender.close();
    connection.close();
}
Also used : AmqpConnection(org.apache.activemq.transport.amqp.client.AmqpConnection) AmqpSession(org.apache.activemq.transport.amqp.client.AmqpSession) AmqpClient(org.apache.activemq.transport.amqp.client.AmqpClient) AmqpSender(org.apache.activemq.transport.amqp.client.AmqpSender) Queue(org.apache.activemq.artemis.core.server.Queue) AmqpMessage(org.apache.activemq.transport.amqp.client.AmqpMessage)

Example 63 with AmqpSender

use of org.apache.activemq.transport.amqp.client.AmqpSender in project activemq-artemis by apache.

the class AmqpSenderTest method testUnsettledSender.

@Test(timeout = 60000)
public void testUnsettledSender() throws Exception {
    final int MSG_COUNT = 1000;
    final CountDownLatch settled = new CountDownLatch(MSG_COUNT);
    AmqpClient client = createAmqpClient();
    AmqpConnection connection = addConnection(client.connect());
    connection.setStateInspector(new AmqpValidator() {

        @Override
        public void inspectDeliveryUpdate(Sender sender, Delivery delivery) {
            if (delivery.remotelySettled()) {
                IntegrationTestLogger.LOGGER.trace("Remote settled message for sender: " + sender.getName());
                settled.countDown();
            }
        }
    });
    AmqpSession session = connection.createSession();
    AmqpSender sender = session.createSender(getQueueName(), false);
    for (int i = 1; i <= MSG_COUNT; ++i) {
        AmqpMessage message = new AmqpMessage();
        message.setText("Test-Message: " + i);
        sender.send(message);
        if (i % 1000 == 0) {
            IntegrationTestLogger.LOGGER.info("Sent message: " + i);
        }
    }
    Queue queueView = getProxyToQueue(getQueueName());
    Wait.assertTrue("All messages should arrive", () -> queueView.getMessageCount() == MSG_COUNT);
    sender.close();
    assertTrue("Remote should have settled all deliveries", settled.await(5, TimeUnit.MINUTES));
    connection.close();
}
Also used : AmqpSender(org.apache.activemq.transport.amqp.client.AmqpSender) Sender(org.apache.qpid.proton.engine.Sender) AmqpConnection(org.apache.activemq.transport.amqp.client.AmqpConnection) AmqpSession(org.apache.activemq.transport.amqp.client.AmqpSession) AmqpClient(org.apache.activemq.transport.amqp.client.AmqpClient) Delivery(org.apache.qpid.proton.engine.Delivery) CountDownLatch(java.util.concurrent.CountDownLatch) AmqpSender(org.apache.activemq.transport.amqp.client.AmqpSender) Queue(org.apache.activemq.artemis.core.server.Queue) AmqpMessage(org.apache.activemq.transport.amqp.client.AmqpMessage) AmqpValidator(org.apache.activemq.transport.amqp.client.AmqpValidator) Test(org.junit.Test)

Example 64 with AmqpSender

use of org.apache.activemq.transport.amqp.client.AmqpSender in project activemq-artemis by apache.

the class AmqpSenderTest method testPresettledSender.

@Test(timeout = 60000)
public void testPresettledSender() throws Exception {
    final int MSG_COUNT = 1000;
    AmqpClient client = createAmqpClient();
    AmqpConnection connection = addConnection(client.connect());
    AmqpSession session = connection.createSession();
    AmqpSender sender = session.createSender(getQueueName(), true);
    for (int i = 1; i <= MSG_COUNT; ++i) {
        AmqpMessage message = new AmqpMessage();
        message.setText("Test-Message: " + i);
        sender.send(message);
        if (i % 1000 == 0) {
            IntegrationTestLogger.LOGGER.info("Sent message: " + i);
        }
    }
    Queue queueView = getProxyToQueue(getQueueName());
    Wait.assertTrue("All messages should arrive", () -> queueView.getMessageCount() == MSG_COUNT);
    sender.close();
    connection.close();
}
Also used : AmqpConnection(org.apache.activemq.transport.amqp.client.AmqpConnection) AmqpSession(org.apache.activemq.transport.amqp.client.AmqpSession) AmqpClient(org.apache.activemq.transport.amqp.client.AmqpClient) AmqpSender(org.apache.activemq.transport.amqp.client.AmqpSender) Queue(org.apache.activemq.artemis.core.server.Queue) AmqpMessage(org.apache.activemq.transport.amqp.client.AmqpMessage) Test(org.junit.Test)

Example 65 with AmqpSender

use of org.apache.activemq.transport.amqp.client.AmqpSender in project activemq-artemis by apache.

the class AmqpTempDestinationTest method doTestCreateDynamicSenderAndPublish.

protected void doTestCreateDynamicSenderAndPublish(boolean topic) throws Exception {
    Target target = createDynamicTarget(topic);
    AmqpClient client = createAmqpClient();
    AmqpConnection connection = addConnection(client.connect());
    AmqpSession session = connection.createSession();
    AmqpSender sender = session.createSender(target);
    assertNotNull(sender);
    Target remoteTarget = (Target) sender.getEndpoint().getRemoteTarget();
    Queue queueView = getProxyToQueue(remoteTarget.getAddress());
    assertNotNull(queueView);
    // Get the new address
    String address = sender.getSender().getRemoteTarget().getAddress();
    LOG.info("New dynamic sender address -> {}", address);
    // Create a message and send to a receive that is listening on the newly
    // created dynamic link address.
    AmqpMessage message = new AmqpMessage();
    message.setMessageId("msg-1");
    message.setText("Test-Message");
    AmqpReceiver receiver = session.createReceiver(address);
    receiver.flow(1);
    sender.send(message);
    AmqpMessage received = receiver.receive(5, TimeUnit.SECONDS);
    assertNotNull("Should have read a message", received);
    received.accept();
    receiver.close();
    sender.close();
    connection.close();
}
Also used : AmqpConnection(org.apache.activemq.transport.amqp.client.AmqpConnection) Target(org.apache.qpid.proton.amqp.messaging.Target) AmqpSession(org.apache.activemq.transport.amqp.client.AmqpSession) AmqpReceiver(org.apache.activemq.transport.amqp.client.AmqpReceiver) AmqpClient(org.apache.activemq.transport.amqp.client.AmqpClient) AmqpSender(org.apache.activemq.transport.amqp.client.AmqpSender) Queue(org.apache.activemq.artemis.core.server.Queue) AmqpMessage(org.apache.activemq.transport.amqp.client.AmqpMessage)

Aggregations

AmqpSender (org.apache.activemq.transport.amqp.client.AmqpSender)90 AmqpSession (org.apache.activemq.transport.amqp.client.AmqpSession)90 AmqpClient (org.apache.activemq.transport.amqp.client.AmqpClient)89 AmqpConnection (org.apache.activemq.transport.amqp.client.AmqpConnection)89 AmqpMessage (org.apache.activemq.transport.amqp.client.AmqpMessage)82 Test (org.junit.Test)74 AmqpReceiver (org.apache.activemq.transport.amqp.client.AmqpReceiver)61 Queue (org.apache.activemq.artemis.core.server.Queue)47 SimpleString (org.apache.activemq.artemis.api.core.SimpleString)8 URI (java.net.URI)6 CountDownLatch (java.util.concurrent.CountDownLatch)6 AmqpValidator (org.apache.activemq.transport.amqp.client.AmqpValidator)5 Sender (org.apache.qpid.proton.engine.Sender)5 ArrayList (java.util.ArrayList)4 Connection (javax.jms.Connection)4 Message (javax.jms.Message)4 MessageConsumer (javax.jms.MessageConsumer)4 Session (javax.jms.Session)4 Delivery (org.apache.qpid.proton.engine.Delivery)4 BytesMessage (javax.jms.BytesMessage)3