Java Code Examples for org.apache.qpid.proton.engine.Session#open()
The following examples show how to use
org.apache.qpid.proton.engine.Session#open() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Send.java From qpid-proton-j with Apache License 2.0 | 6 votes |
@Override public void onConnectionInit(Event event) { Connection conn = event.getConnection(); // Every session or link could have their own handler(s) if we // wanted simply by adding the handler to the given session // or link Session ssn = conn.session(); // If a link doesn't have an event handler, the events go to // its parent session. If the session doesn't have a handler // the events go to its parent connection. If the connection // doesn't have a handler, the events go to the reactor. Sender snd = ssn.sender("sender"); conn.open(); ssn.open(); snd.open(); }
Example 2
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 6 votes |
@Test public void testOpenSessionBeforeOpenConnection() { MockTransportImpl transport = new MockTransportImpl(); Connection connection = Proton.connection(); transport.bind(connection); Session session = connection.session(); session.open(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 0, transport.writes.size()); connection.open(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 2, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(0) instanceof Open); assertTrue("Unexpected frame type", transport.writes.get(1) instanceof Begin); }
Example 3
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 5 votes |
void doOpenLinkBeforeOpenConnectionTestImpl(boolean receiverLink) { MockTransportImpl transport = new MockTransportImpl(); Connection connection = Proton.connection(); transport.bind(connection); Session session = connection.session(); session.open(); Link link = null; if(receiverLink) { link = session.receiver("myReceiver"); } else { link = session.sender("mySender"); } link.open(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 0, transport.writes.size()); // Now open the connection, expect the Open, Begin, and Attach frames connection.open(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(0) instanceof Open); assertTrue("Unexpected frame type", transport.writes.get(1) instanceof Begin); assertTrue("Unexpected frame type", transport.writes.get(2) instanceof Attach); }
Example 4
Source File: ConnectionTest.java From qpid-proton-j with Apache License 2.0 | 5 votes |
private void assertConnectionIsUsable() { Session clientSesion = _clientConnection.session(); clientSesion.open(); _pumper.pumpAll(); Session serverSession = _serverConnection.sessionHead(of(UNINITIALIZED), of(ACTIVE)); serverSession.open(); _pumper.pumpAll(); assertEnpointState(clientSesion, ACTIVE, ACTIVE); assertEnpointState(serverSession, ACTIVE, ACTIVE); }
Example 5
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 5 votes |
@Test public void testReceiverFlowBeforeOpenConnection() { MockTransportImpl transport = new MockTransportImpl(); Connection connection = Proton.connection(); transport.bind(connection); Session session = connection.session(); session.open(); Receiver reciever = session.receiver("myReceiver"); reciever.flow(5); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 0, transport.writes.size()); // Now open the connection, expect the Open and Begin frames but // nothing else as we haven't opened the receiver itself yet. connection.open(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 2, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(0) instanceof Open); assertTrue("Unexpected frame type", transport.writes.get(1) instanceof Begin); }
Example 6
Source File: Handshaker.java From qpid-proton-j with Apache License 2.0 | 5 votes |
@Override public void onSessionRemoteOpen(Event evt) { Session ssn = evt.getSession(); if (ssn.getLocalState() == EndpointState.UNINITIALIZED) { ssn.open(); } }
Example 7
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 4 votes |
/** * Verify that no Disposition frame is emitted by the Transport should a Delivery * have disposition applied after the delivery has been settled previously. */ @Test public void testNoDispositionUpdatesAfterSettlementProceessedSender() { MockTransportImpl transport = new MockTransportImpl(); Connection connection = Proton.connection(); transport.bind(connection); connection.open(); Session session = connection.session(); session.open(); String linkName = "myReceiver"; Receiver receiver = session.receiver(linkName); receiver.flow(5); receiver.open(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 4, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(0) instanceof Open); assertTrue("Unexpected frame type", transport.writes.get(1) instanceof Begin); assertTrue("Unexpected frame type", transport.writes.get(2) instanceof Attach); assertTrue("Unexpected frame type", transport.writes.get(3) instanceof Flow); Delivery delivery = receiver.current(); assertNull("Should not yet have a delivery", delivery); // Send the necessary responses to open/begin/attach as well as a transfer transport.handleFrame(new TransportFrame(0, new Open(), null)); Begin begin = new Begin(); begin.setRemoteChannel(UnsignedShort.valueOf((short) 0)); begin.setNextOutgoingId(UnsignedInteger.ONE); begin.setIncomingWindow(UnsignedInteger.valueOf(1024)); begin.setOutgoingWindow(UnsignedInteger.valueOf(1024)); transport.handleFrame(new TransportFrame(0, begin, null)); Attach attach = new Attach(); attach.setHandle(UnsignedInteger.ZERO); attach.setRole(Role.SENDER); attach.setName(linkName); attach.setInitialDeliveryCount(UnsignedInteger.ZERO); transport.handleFrame(new TransportFrame(0, attach, null)); String deliveryTag = "tag1"; String messageContent = "content1"; handleTransfer(transport, 1, deliveryTag, messageContent); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 4, transport.writes.size()); delivery = verifyDelivery(receiver, deliveryTag, messageContent); assertNotNull("Should now have a delivery", delivery); delivery.disposition(Accepted.getInstance()); delivery.settle(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 5, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(4) instanceof Disposition); // Should not produce any new frames being written delivery.disposition(Accepted.getInstance()); connection.close(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 6, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(5) instanceof Close); }
Example 8
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 4 votes |
@Test public void testEndpointOpenAndCloseAreIdempotent() { MockTransportImpl transport = new MockTransportImpl(); Connection connection = Proton.connection(); transport.bind(connection); Collector collector = Collector.Factory.create(); connection.collect(collector); connection.open(); connection.open(); Session session = connection.session(); session.open(); String linkName = "mySender"; Sender sender = session.sender(linkName); sender.open(); pumpMockTransport(transport); assertEvents(collector, Event.Type.CONNECTION_INIT, Event.Type.CONNECTION_LOCAL_OPEN, Event.Type.TRANSPORT, Event.Type.SESSION_INIT, Event.Type.SESSION_LOCAL_OPEN, Event.Type.TRANSPORT, Event.Type.LINK_INIT, Event.Type.LINK_LOCAL_OPEN, Event.Type.TRANSPORT); pumpMockTransport(transport); connection.open(); session.open(); sender.open(); assertNoEvents(collector); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(0) instanceof Open); assertTrue("Unexpected frame type", transport.writes.get(1) instanceof Begin); assertTrue("Unexpected frame type", transport.writes.get(2) instanceof Attach); // Send the necessary responses to open/begin/attach then give sender credit transport.handleFrame(new TransportFrame(0, new Open(), null)); Begin begin = new Begin(); begin.setRemoteChannel(UnsignedShort.valueOf((short) 0)); transport.handleFrame(new TransportFrame(0, begin, null)); Attach attach = new Attach(); attach.setHandle(UnsignedInteger.ZERO); attach.setRole(Role.RECEIVER); attach.setName(linkName); attach.setInitialDeliveryCount(UnsignedInteger.ZERO); transport.handleFrame(new TransportFrame(0, attach, null)); assertEvents(collector, Event.Type.CONNECTION_REMOTE_OPEN, Event.Type.SESSION_REMOTE_OPEN, Event.Type.LINK_REMOTE_OPEN); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); // Now close the link and expect one event sender.close(); sender.close(); assertEvents(collector, Event.Type.LINK_LOCAL_CLOSE, Event.Type.TRANSPORT); pumpMockTransport(transport); sender.close(); assertNoEvents(collector); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 4, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(3) instanceof Detach); }
Example 9
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 4 votes |
/** * Verify that no Disposition frame is emitted by the Transport should a Delivery * have disposition applied after the delivery has been settled previously. */ @Test public void testNoDispositionUpdatesAfterSettlementProceessedReceiver() { MockTransportImpl transport = new MockTransportImpl(); Connection connection = Proton.connection(); transport.bind(connection); connection.open(); Session session = connection.session(); session.open(); String linkName = "myReceiver"; Sender sender = session.sender(linkName); sender.open(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(0) instanceof Open); assertTrue("Unexpected frame type", transport.writes.get(1) instanceof Begin); assertTrue("Unexpected frame type", transport.writes.get(2) instanceof Attach); // Send the necessary responses to open/begin/attach as well as a transfer transport.handleFrame(new TransportFrame(0, new Open(), null)); Begin begin = new Begin(); begin.setRemoteChannel(UnsignedShort.valueOf((short) 0)); begin.setNextOutgoingId(UnsignedInteger.ONE); begin.setIncomingWindow(UnsignedInteger.valueOf(1024)); begin.setOutgoingWindow(UnsignedInteger.valueOf(1024)); transport.handleFrame(new TransportFrame(0, begin, null)); Attach attach = new Attach(); attach.setHandle(UnsignedInteger.ZERO); attach.setRole(Role.RECEIVER); attach.setName(linkName); attach.setInitialDeliveryCount(UnsignedInteger.ZERO); transport.handleFrame(new TransportFrame(0, attach, null)); int credit = 1; Flow flow = new Flow(); flow.setHandle(UnsignedInteger.ZERO); flow.setDeliveryCount(UnsignedInteger.ZERO); flow.setNextIncomingId(UnsignedInteger.ONE); flow.setNextOutgoingId(UnsignedInteger.ZERO); flow.setIncomingWindow(UnsignedInteger.valueOf(1024)); flow.setOutgoingWindow(UnsignedInteger.valueOf(1024)); flow.setDrain(true); flow.setLinkCredit(UnsignedInteger.valueOf(credit)); transport.handleFrame(new TransportFrame(0, flow, null)); Delivery delivery = sendMessage(sender, "tag1", "content1"); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 4, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(3) instanceof Transfer); delivery.disposition(Accepted.getInstance()); delivery.settle(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 5, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(4) instanceof Disposition); // Should not produce any new frames being written delivery.disposition(Accepted.getInstance()); connection.close(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 6, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(5) instanceof Close); }
Example 10
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 4 votes |
@Test public void testDeliveryIdTrackingHandlesAbortedDelivery() { MockTransportImpl transport = new MockTransportImpl(); transport.setEmitFlowEventOnSend(false); Connection connection = Proton.connection(); transport.bind(connection); connection.open(); Session session = connection.session(); session.open(); String linkName1 = "myReceiver1"; Receiver receiver1 = session.receiver(linkName1); receiver1.flow(5); receiver1.open(); pumpMockTransport(transport); final UnsignedInteger r1handle = UnsignedInteger.ZERO; assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 4, transport.writes.size()); // Give the necessary responses to open/begin/attach transport.handleFrame(new TransportFrame(0, new Open(), null)); Begin begin = new Begin(); begin.setRemoteChannel(UnsignedShort.valueOf((short) 0)); begin.setNextOutgoingId(UnsignedInteger.ONE); begin.setIncomingWindow(UnsignedInteger.valueOf(1024)); begin.setOutgoingWindow(UnsignedInteger.valueOf(1024)); transport.handleFrame(new TransportFrame(0, begin, null)); Attach attach1 = new Attach(); attach1.setHandle(r1handle); attach1.setRole(Role.SENDER); attach1.setName(linkName1); attach1.setInitialDeliveryCount(UnsignedInteger.ZERO); transport.handleFrame(new TransportFrame(0, attach1, null)); // Receive first transfer for a multi-frame delivery assertEquals("Unexpected queued count", 0, receiver1.getQueued()); handlePartialTransfer(transport, r1handle, UnsignedInteger.ZERO, "tag1", new byte[]{ 1 }, true); assertEquals("Unexpected queued count", 1, receiver1.getQueued()); // Receive second transfer for a multi-frame delivery, indicating it is aborted handlePartialTransfer(transport, r1handle, UnsignedInteger.ZERO, "tag1", new byte[]{ 2 }, true, true); assertEquals("Unexpected queued count", 1, receiver1.getQueued()); // Receive first transfer for ANOTHER delivery, expect it not to fail, since the earlier delivery aborted handlePartialTransfer(transport, r1handle, UnsignedInteger.ONE, "tag2", new byte[]{ 3 }, false); assertEquals("Unexpected queued count", 2, receiver1.getQueued()); receiver1.advance(); verifyDeliveryRawPayload(receiver1, "tag2", new byte[] { 3 }); }
Example 11
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 4 votes |
/** * Verify that no Flow frame is emitted by the Transport should a Sender * have credit drained added after the Close frame was sent. */ @Test public void testSenderFlowAfterCloseSent() { MockTransportImpl transport = new MockTransportImpl(); Connection connection = Proton.connection(); transport.bind(connection); connection.open(); Collector collector = Collector.Factory.create(); connection.collect(collector); Session session = connection.session(); session.open(); String linkName = "mySender"; Sender sender = session.sender(linkName); sender.open(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(0) instanceof Open); assertTrue("Unexpected frame type", transport.writes.get(1) instanceof Begin); assertTrue("Unexpected frame type", transport.writes.get(2) instanceof Attach); assertFalse("Should not be in drain yet", sender.getDrain()); // Send the necessary responses to open/begin/attach then give sender credit and drain transport.handleFrame(new TransportFrame(0, new Open(), null)); Begin begin = new Begin(); begin.setRemoteChannel(UnsignedShort.valueOf((short) 0)); transport.handleFrame(new TransportFrame(0, begin, null)); Attach attach = new Attach(); attach.setHandle(UnsignedInteger.ZERO); attach.setRole(Role.RECEIVER); attach.setName(linkName); attach.setInitialDeliveryCount(UnsignedInteger.ZERO); transport.handleFrame(new TransportFrame(0, attach, null)); int credit = 10; Flow flow = new Flow(); flow.setHandle(UnsignedInteger.ZERO); flow.setDeliveryCount(UnsignedInteger.ZERO); flow.setNextIncomingId(UnsignedInteger.ONE); flow.setNextOutgoingId(UnsignedInteger.ZERO); flow.setIncomingWindow(UnsignedInteger.valueOf(1024)); flow.setOutgoingWindow(UnsignedInteger.valueOf(1024)); flow.setDrain(true); flow.setLinkCredit(UnsignedInteger.valueOf(credit)); transport.handleFrame(new TransportFrame(0, flow, null)); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); assertTrue("Should not be in drain", sender.getDrain()); assertEquals("Should have credit", credit, sender.getCredit()); // Cause the Close frame to be sent connection.close(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 4, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(3) instanceof Close); // Drain the credit and verify the transport doesn't // send any Flow frame, as a Close frame was sent already. int drained = sender.drained(); assertEquals("Should have drained all credit", credit, drained); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 4, transport.writes.size()); }
Example 12
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 4 votes |
/** * Verify that no Flow frame is emitted by the Transport should a Receiver * have pending drain when a detach is sent for that receiver. */ @Test public void testNoReceiverFlowAfterDetachSentWhileDraining() { MockTransportImpl transport = new MockTransportImpl(); Connection connection = Proton.connection(); transport.bind(connection); connection.open(); Session session = connection.session(); session.open(); String linkName = "myReceiver"; Receiver receiver = session.receiver(linkName); receiver.open(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(0) instanceof Open); assertTrue("Unexpected frame type", transport.writes.get(1) instanceof Begin); assertTrue("Unexpected frame type", transport.writes.get(2) instanceof Attach); // Send the necessary responses to open/begin/attach transport.handleFrame(new TransportFrame(0, new Open(), null)); Begin begin = new Begin(); begin.setRemoteChannel(UnsignedShort.valueOf((short) 0)); transport.handleFrame(new TransportFrame(0, begin, null)); Attach attach = new Attach(); attach.setHandle(UnsignedInteger.ZERO); attach.setRole(Role.RECEIVER); attach.setName(linkName); attach.setInitialDeliveryCount(UnsignedInteger.ZERO); transport.handleFrame(new TransportFrame(0, attach, null)); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); // Start a drain for the Receiver and verify the transport doesn't // send any Flow frame, due to the detach being initiated. receiver.drain(10); pumpMockTransport(transport); // Cause the Detach frame to be sent receiver.detach(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 5, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(4) instanceof Detach); }
Example 13
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 4 votes |
/** * Verify that no Flow frame is emitted by the Transport should a Receiver * have credit added after the Close frame was sent. */ @Test public void testReceiverFlowAfterCloseSent() { MockTransportImpl transport = new MockTransportImpl(); Connection connection = Proton.connection(); transport.bind(connection); connection.open(); Session session = connection.session(); session.open(); String linkName = "myReceiver"; Receiver receiver = session.receiver(linkName); receiver.open(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(0) instanceof Open); assertTrue("Unexpected frame type", transport.writes.get(1) instanceof Begin); assertTrue("Unexpected frame type", transport.writes.get(2) instanceof Attach); // Send the necessary responses to open/begin/attach transport.handleFrame(new TransportFrame(0, new Open(), null)); Begin begin = new Begin(); begin.setRemoteChannel(UnsignedShort.valueOf((short) 0)); transport.handleFrame(new TransportFrame(0, begin, null)); Attach attach = new Attach(); attach.setHandle(UnsignedInteger.ZERO); attach.setRole(Role.RECEIVER); attach.setName(linkName); attach.setInitialDeliveryCount(UnsignedInteger.ZERO); transport.handleFrame(new TransportFrame(0, attach, null)); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); // Cause the Close frame to be sent connection.close(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 4, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(3) instanceof Close); // Grant new credit for the Receiver and verify the transport doesn't // send any Flow frame, as a Close frame was sent already. receiver.flow(1); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 4, transport.writes.size()); }
Example 14
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 4 votes |
private void doDeliveryIdThresholdsWrapsTestImpl(UnsignedInteger deliveryId1, UnsignedInteger deliveryId2, UnsignedInteger deliveryId3) { MockTransportImpl transport = new MockTransportImpl(); transport.setEmitFlowEventOnSend(false); Connection connection = Proton.connection(); transport.bind(connection); connection.open(); Session session = connection.session(); session.open(); String linkName1 = "myReceiver1"; Receiver receiver1 = session.receiver(linkName1); receiver1.flow(5); receiver1.open(); pumpMockTransport(transport); final UnsignedInteger r1handle = UnsignedInteger.ZERO; assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 4, transport.writes.size()); // Give the necessary responses to open/begin/attach transport.handleFrame(new TransportFrame(0, new Open(), null)); Begin begin = new Begin(); begin.setRemoteChannel(UnsignedShort.valueOf((short) 0)); begin.setNextOutgoingId(UnsignedInteger.ONE); begin.setIncomingWindow(UnsignedInteger.valueOf(1024)); begin.setOutgoingWindow(UnsignedInteger.valueOf(1024)); transport.handleFrame(new TransportFrame(0, begin, null)); Attach attach1 = new Attach(); attach1.setHandle(r1handle); attach1.setRole(Role.SENDER); attach1.setName(linkName1); attach1.setInitialDeliveryCount(UnsignedInteger.ZERO); transport.handleFrame(new TransportFrame(0, attach1, null)); String deliveryTag1 = "tag1"; String deliveryTag2 = "tag2"; String deliveryTag3 = "tag3"; // Send deliveries with the given delivery-id handlePartialTransfer(transport, r1handle, deliveryId1, deliveryTag1, new byte[]{ 1 }, false); handlePartialTransfer(transport, r1handle, deliveryId2, deliveryTag2, new byte[]{ 2 }, false); handlePartialTransfer(transport, r1handle, deliveryId3, deliveryTag3, new byte[]{ 3 }, false); // Verify deliveries arrived with expected payload verifyDeliveryRawPayload(receiver1, deliveryTag1, new byte[] { 1 }); verifyDeliveryRawPayload(receiver1, deliveryTag2, new byte[] { 2 }); verifyDeliveryRawPayload(receiver1, deliveryTag3, new byte[] { 3 }); }
Example 15
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 4 votes |
private void doInvalidDispositionProvokesDecodeErrorTestImpl(byte[] bytes, String description) { MockTransportImpl transport = new MockTransportImpl(); Connection connection = Proton.connection(); Collector collector = Collector.Factory.create(); connection.collect(collector); transport.bind(connection); connection.open(); Session session = connection.session(); session.open(); String linkName = "mySender"; Sender sender = session.sender(linkName); sender.open(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(0) instanceof Open); assertTrue("Unexpected frame type", transport.writes.get(1) instanceof Begin); assertTrue("Unexpected frame type", transport.writes.get(2) instanceof Attach); // Provide the response bytes for the header transport.tail().put(AmqpHeader.HEADER); transport.process(); // Send the necessary response to Open/Begin/Attach plus some credit transport.handleFrame(new TransportFrame(0, new Open(), null)); Begin begin = new Begin(); begin.setRemoteChannel(UnsignedShort.valueOf((short) 0)); begin.setNextOutgoingId(UnsignedInteger.ONE); begin.setIncomingWindow(UnsignedInteger.valueOf(1024)); begin.setOutgoingWindow(UnsignedInteger.valueOf(1024)); transport.handleFrame(new TransportFrame(0, begin, null)); Attach attach = new Attach(); attach.setHandle(UnsignedInteger.ZERO); attach.setRole(Role.SENDER); attach.setName(linkName); attach.setInitialDeliveryCount(UnsignedInteger.ZERO); transport.handleFrame(new TransportFrame(0, attach, null)); int credit = 1; Flow flow = new Flow(); flow.setHandle(UnsignedInteger.ZERO); flow.setDeliveryCount(UnsignedInteger.ZERO); flow.setNextIncomingId(UnsignedInteger.ONE); flow.setNextOutgoingId(UnsignedInteger.ZERO); flow.setIncomingWindow(UnsignedInteger.valueOf(1024)); flow.setOutgoingWindow(UnsignedInteger.valueOf(1024)); flow.setDrain(true); flow.setLinkCredit(UnsignedInteger.valueOf(credit)); transport.handleFrame(new TransportFrame(0, flow, null)); sendMessage(sender, "tag1", "content1"); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 4, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(3) instanceof Transfer); int capacity = transport.capacity(); assertTrue("Unexpected transport capacity: " + capacity, capacity > bytes.length); transport.tail().put(bytes); transport.process(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 5, transport.writes.size()); FrameBody frameBody = transport.writes.get(4); assertTrue("Unexpected frame type", frameBody instanceof Close); // Expect the close frame generated to contain a decode error condition referencing the missing container-id. ErrorCondition expectedCondition = new ErrorCondition(); expectedCondition.setCondition(AmqpError.DECODE_ERROR); expectedCondition.setDescription(description); assertEquals("Unexpected condition", expectedCondition, ((Close) frameBody).getError()); }
Example 16
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 4 votes |
@Test public void testDeliveryIdOutOfSequenceCausesISE() { MockTransportImpl transport = new MockTransportImpl(); transport.setEmitFlowEventOnSend(false); Connection connection = Proton.connection(); transport.bind(connection); connection.open(); Session session = connection.session(); session.open(); String linkName1 = "myReceiver1"; Receiver receiver1 = session.receiver(linkName1); receiver1.flow(5); receiver1.open(); String linkName2 = "myReceiver2"; Receiver receiver2 = session.receiver(linkName2); receiver2.flow(5); receiver2.open(); pumpMockTransport(transport); final UnsignedInteger r1handle = UnsignedInteger.ZERO; final UnsignedInteger r2handle = UnsignedInteger.ONE; assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 6, transport.writes.size()); // Give the necessary responses to open/begin/attach transport.handleFrame(new TransportFrame(0, new Open(), null)); Begin begin = new Begin(); begin.setRemoteChannel(UnsignedShort.valueOf((short) 0)); begin.setNextOutgoingId(UnsignedInteger.ONE); begin.setIncomingWindow(UnsignedInteger.valueOf(1024)); begin.setOutgoingWindow(UnsignedInteger.valueOf(1024)); transport.handleFrame(new TransportFrame(0, begin, null)); Attach attach1 = new Attach(); attach1.setHandle(r1handle); attach1.setRole(Role.SENDER); attach1.setName(linkName1); attach1.setInitialDeliveryCount(UnsignedInteger.ZERO); transport.handleFrame(new TransportFrame(0, attach1, null)); Attach attach2 = new Attach(); attach2.setHandle(r2handle); attach2.setRole(Role.SENDER); attach2.setName(linkName2); attach2.setInitialDeliveryCount(UnsignedInteger.ZERO); transport.handleFrame(new TransportFrame(0, attach2, null)); String deliveryTag1 = "tag1"; String deliveryTag2 = "tag2"; handlePartialTransfer(transport, r2handle, 2, deliveryTag2, new byte[]{ 2 }, false); try { handlePartialTransfer(transport, r1handle, 1, deliveryTag1, new byte[]{ 1 }, false); fail("Expected an ISE"); } catch(IllegalStateException ise) { // Expected assertTrue("Unexpected exception:" + ise, ise.getMessage().contains("Expected delivery-id 3, got 1")); } }
Example 17
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 4 votes |
private void doInvalidFlowProvokesDecodeErrorTestImpl(byte[] bytes, String description) { MockTransportImpl transport = new MockTransportImpl(); Connection connection = Proton.connection(); Collector collector = Collector.Factory.create(); connection.collect(collector); transport.bind(connection); connection.open(); Session session = connection.session(); session.open(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 2, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(0) instanceof Open); assertTrue("Unexpected frame type", transport.writes.get(1) instanceof Begin); // Provide the response bytes for the header transport.tail().put(AmqpHeader.HEADER); transport.process(); // Send the necessary response to Open/Begin transport.handleFrame(new TransportFrame(0, new Open(), null)); Begin begin = new Begin(); begin.setRemoteChannel(UnsignedShort.valueOf((short) 0)); begin.setNextOutgoingId(UnsignedInteger.ONE); begin.setIncomingWindow(UnsignedInteger.valueOf(1024)); begin.setOutgoingWindow(UnsignedInteger.valueOf(1024)); transport.handleFrame(new TransportFrame(0, begin, null)); int capacity = transport.capacity(); assertTrue("Unexpected transport capacity: " + capacity, capacity > bytes.length); transport.tail().put(bytes); transport.process(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); FrameBody frameBody = transport.writes.get(2); assertTrue("Unexpected frame type", frameBody instanceof Close); // Expect the close frame generated to contain a decode error condition referencing the missing container-id. ErrorCondition expectedCondition = new ErrorCondition(); expectedCondition.setCondition(AmqpError.DECODE_ERROR); expectedCondition.setDescription(description); assertEquals("Unexpected condition", expectedCondition, ((Close) frameBody).getError()); }
Example 18
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 4 votes |
void doLinkDetachAfterEndSentTestImpl(boolean receiverLink) { MockTransportImpl transport = new MockTransportImpl(); Connection connection = Proton.connection(); transport.bind(connection); connection.open(); Session session = connection.session(); session.open(); Link link = null; if(receiverLink) { link = session.receiver("myReceiver"); } else { link = session.sender("mySender"); } link.open(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(0) instanceof Open); assertTrue("Unexpected frame type", transport.writes.get(1) instanceof Begin); assertTrue("Unexpected frame type", transport.writes.get(2) instanceof Attach); // Send the necessary responses to open/begin transport.handleFrame(new TransportFrame(0, new Open(), null)); Begin begin = new Begin(); begin.setRemoteChannel(UnsignedShort.valueOf((short) 0)); transport.handleFrame(new TransportFrame(0, begin, null)); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); // Cause an End frame to be sent session.close(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 4, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(3) instanceof End); // Close the link and verify the transport doesn't // send any Detach frame, as an End frame was sent already. link.close(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 4, transport.writes.size()); }
Example 19
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 4 votes |
void doLinkAttachAfterEndSentTestImpl(boolean receiverLink) { MockTransportImpl transport = new MockTransportImpl(); Connection connection = Proton.connection(); transport.bind(connection); connection.open(); Session session = connection.session(); session.open(); Link link = null; if(receiverLink) { link = session.receiver("myReceiver"); } else { link = session.sender("mySender"); } pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 2, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(0) instanceof Open); assertTrue("Unexpected frame type", transport.writes.get(1) instanceof Begin); // Send the necessary responses to open/begin transport.handleFrame(new TransportFrame(0, new Open(), null)); Begin begin = new Begin(); begin.setRemoteChannel(UnsignedShort.valueOf((short) 0)); transport.handleFrame(new TransportFrame(0, begin, null)); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 2, transport.writes.size()); // Cause a End frame to be sent session.close(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); assertTrue("Unexpected frame type", transport.writes.get(2) instanceof End); // Open the link and verify the transport doesn't // send any Attach frame, as an End frame was sent already. link.open(); pumpMockTransport(transport); assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 3, transport.writes.size()); }
Example 20
Source File: TransportImplTest.java From qpid-proton-j with Apache License 2.0 | 4 votes |
@Test public void testDeliveryIdMissingOnInitialTransferCausesISE() { MockTransportImpl transport = new MockTransportImpl(); transport.setEmitFlowEventOnSend(false); Connection connection = Proton.connection(); transport.bind(connection); connection.open(); Session session = connection.session(); session.open(); String linkName1 = "myReceiver1"; Receiver receiver1 = session.receiver(linkName1); receiver1.flow(5); receiver1.open(); pumpMockTransport(transport); final UnsignedInteger r1handle = UnsignedInteger.ZERO; assertEquals("Unexpected frames written: " + getFrameTypesWritten(transport), 4, transport.writes.size()); // Give the necessary responses to open/begin/attach transport.handleFrame(new TransportFrame(0, new Open(), null)); Begin begin = new Begin(); begin.setRemoteChannel(UnsignedShort.valueOf((short) 0)); begin.setNextOutgoingId(UnsignedInteger.ONE); begin.setIncomingWindow(UnsignedInteger.valueOf(1024)); begin.setOutgoingWindow(UnsignedInteger.valueOf(1024)); transport.handleFrame(new TransportFrame(0, begin, null)); Attach attach1 = new Attach(); attach1.setHandle(r1handle); attach1.setRole(Role.SENDER); attach1.setName(linkName1); attach1.setInitialDeliveryCount(UnsignedInteger.ZERO); transport.handleFrame(new TransportFrame(0, attach1, null)); // Receive a delivery without any delivery-id on the [first] transfer frame, expect it to fail. try { handlePartialTransfer(transport, r1handle, null, "tag1", new byte[]{ 1 }, false); fail("Expected an ISE"); } catch(IllegalStateException ise) { // Expected assertEquals("Unexpected message", "No delivery-id specified on first Transfer of new delivery", ise.getMessage()); } }