use of org.apache.qpid.tests.protocol.v0_8.FrameTransport in project qpid-broker-j by apache.
the class TransactionalTransferTest method receiveTransactionalRetirementDispositionFailsDueToUnknownTransactionId.
@Test
@SpecificationTest(section = "4.4.2", description = "Transactional Retirement[...]" + " To associate an outcome with a transaction the controller" + " sends a disposition performative which sets the state" + " of the delivery to a transactional-state with the desired" + " transaction identifier and the outcome to be applied" + " upon a successful discharge.")
public void receiveTransactionalRetirementDispositionFailsDueToUnknownTransactionId() throws Exception {
getBrokerAdmin().putMessageOnQueue(BrokerAdmin.TEST_QUEUE_NAME, TEST_MESSAGE_CONTENT);
try (FrameTransport transport = new FrameTransport(_brokerAddress).connect()) {
final Interaction interaction = transport.newInteraction();
final InteractionTransactionalState txnState = interaction.createTransactionalState(UnsignedInteger.ZERO);
List<Transfer> transfers = interaction.negotiateProtocol().consumeResponse().open().consumeResponse(Open.class).begin().consumeResponse(Begin.class).txnAttachCoordinatorLink(txnState).txnDeclare(txnState).attachRole(Role.RECEIVER).attachHandle(UnsignedInteger.ONE).attachSourceAddress(BrokerAdmin.TEST_QUEUE_NAME).attachRcvSettleMode(ReceiverSettleMode.FIRST).attach().consumeResponse(Attach.class).flowIncomingWindow(UnsignedInteger.ONE).flowNextIncomingId(UnsignedInteger.ZERO).flowOutgoingWindow(UnsignedInteger.ZERO).flowNextOutgoingId(UnsignedInteger.ZERO).flowLinkCredit(UnsignedInteger.ONE).flowHandleFromLinkHandle().flow().receiveDelivery().getLatestDelivery();
UnsignedInteger deliveryId = transfers.get(0).getDeliveryId();
assertThat(deliveryId, is(notNullValue()));
Object data = interaction.decodeLatestDelivery().getDecodedLatestDelivery();
assertThat(data, is(equalTo(TEST_MESSAGE_CONTENT)));
Response<?> response = interaction.dispositionSettled(true).dispositionRole(Role.RECEIVER).dispositionTransactionalState(integerToBinary(Integer.MAX_VALUE), new Accepted()).dispositionFirst(deliveryId).disposition().consumeResponse().getLatestResponse();
assertUnknownTransactionIdError(response);
}
}
use of org.apache.qpid.tests.protocol.v0_8.FrameTransport in project qpid-broker-j by apache.
the class ProtocolHeaderTest method successfulHeaderExchange.
@Test
@SpecificationTest(section = "2.2", description = "Prior to sending any frames on a connection, each peer MUST start by sending a protocol header that indicates " + "the protocol version used on the connection. The protocol header consists of the upper case ASCII letters “AMQP” " + "followed by a protocol id of zero, followed by three unsigned bytes representing the major, minor, and revision of " + "the protocol version (currently 1 (MAJOR), 0 (MINOR), 0 (REVISION)).")
public void successfulHeaderExchange() throws Exception {
final InetSocketAddress addr = getBrokerAdmin().getBrokerAddress(BrokerAdmin.PortType.ANONYMOUS_AMQP);
try (FrameTransport transport = new FrameTransport(addr).connect()) {
byte[] protocolHeader = "AMQP\0\1\0\0".getBytes(StandardCharsets.UTF_8);
final byte[] response = transport.newInteraction().protocolHeader(protocolHeader).negotiateProtocol().consumeResponse().getLatestResponse(byte[].class);
assertArrayEquals("Unexpected protocol header response", protocolHeader, response);
}
}
use of org.apache.qpid.tests.protocol.v0_8.FrameTransport in project qpid-broker-j by apache.
the class IdleTimeoutTest method brokerClosesIdleConnection.
@Test
@SpecificationTest(section = "2.4.5", description = "If the [idle timeout threshold] threshold is exceeded, then a peer SHOULD try to" + "gracefully close the connection using a close frame with an error explaining why.")
public void brokerClosesIdleConnection() throws Exception {
final InetSocketAddress addr = getBrokerAdmin().getBrokerAddress(BrokerAdmin.PortType.ANONYMOUS_AMQP);
try (FrameTransport transport = new FrameTransport(addr).connect()) {
Interaction interaction = transport.newInteraction();
Open responseOpen = interaction.negotiateProtocol().consumeResponse().openContainerId("testContainerId").open().consumeResponse().getLatestResponse(Open.class);
assertThat(responseOpen.getIdleTimeOut().intValue(), is(equalTo(IDLE_TIMEOUT_MS)));
// TODO: defect - broker ought to be sending a close performative but it just closes the socket.
interaction.consumeResponse().getLatestResponse(ChannelClosedResponse.class);
}
}
use of org.apache.qpid.tests.protocol.v0_8.FrameTransport in project qpid-broker-j by apache.
the class IdleTimeoutTest method idleLine.
@Test
@SpecificationTest(section = "2.4.5", description = "If a peer needs to satisfy the need to send traffic to prevent idle timeout, and has " + "nothing to send, it MAY send an empty frame.")
public void idleLine() throws Exception {
final InetSocketAddress addr = getBrokerAdmin().getBrokerAddress(BrokerAdmin.PortType.ANONYMOUS_AMQP);
try (FrameTransport transport = new FrameTransport(addr).connect()) {
Interaction interaction = transport.newInteraction();
Open responseOpen = interaction.negotiateProtocol().consumeResponse().openContainerId("testContainerId").openIdleTimeOut(IDLE_TIMEOUT_MS).open().consumeResponse().getLatestResponse(Open.class);
assertThat(responseOpen.getIdleTimeOut().intValue(), is(equalTo(IDLE_TIMEOUT_MS)));
// Reflect the broker's empty frames
interaction.consumeResponse(EmptyResponse.class).emptyFrame();
interaction.consumeResponse(EmptyResponse.class).emptyFrame();
interaction.doCloseConnection();
}
}
use of org.apache.qpid.tests.protocol.v0_8.FrameTransport in project qpid-broker-j by apache.
the class OpenTest method failOpenOnNonExistingHostname.
@Test
@SpecificationTest(section = "2.7.1", description = "The name of the host (either fully qualified or relative) to which the sending peer is connecting")
public void failOpenOnNonExistingHostname() throws Exception {
final InetSocketAddress addr = getBrokerAdmin().getBrokerAddress(BrokerAdmin.PortType.ANONYMOUS_AMQP);
try (FrameTransport transport = new FrameTransport(addr).connect()) {
final Interaction interaction = transport.newInteraction();
Open responseOpen = interaction.negotiateProtocol().consumeResponse().openContainerId("testContainerId").openHostname("non-existing-virtual-host-" + System.currentTimeMillis()).open().consumeResponse().getLatestResponse(Open.class);
assertThat(responseOpen.getContainerId(), is(notNullValue()));
Close responseClose = interaction.consumeResponse().getLatestResponse(Close.class);
assertThat(responseClose.getError(), is(notNullValue()));
assertThat(responseClose.getError().getCondition(), equalTo(AmqpError.NOT_FOUND));
}
}
Aggregations