Search in sources :

Example 1 with EchoReplyInput

use of org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInput in project openflowplugin by opendaylight.

the class EchoReplyInputMessageFactoryTest method testV10.

/**
 * Testing of {@link EchoReplyInputMessageFactory} for correct translation from POJO.
 */
@Test
public void testV10() throws Exception {
    EchoReplyInputBuilder erib = new EchoReplyInputBuilder();
    BufferHelper.setupHeader(erib, EncodeConstants.OF10_VERSION_ID);
    EchoReplyInput eri = erib.build();
    ByteBuf out = UnpooledByteBufAllocator.DEFAULT.buffer();
    echoFactory.serialize(eri, out);
    BufferHelper.checkHeaderV10(out, ECHO_REPLY_MESSAGE_CODE_TYPE, 8);
}
Also used : EchoReplyInputBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInputBuilder) EchoReplyInput(org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInput) ByteBuf(io.netty.buffer.ByteBuf) Test(org.junit.Test)

Example 2 with EchoReplyInput

use of org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInput in project openflowplugin by opendaylight.

the class AbstractOutboundQueueManager method onEchoRequest.

/**
 * Method immediately response on Echo message.
 *
 * @param message incoming Echo message from device
 */
void onEchoRequest(final EchoRequestMessage message) {
    final EchoReplyInput reply = new EchoReplyInputBuilder().setData(message.getData()).setVersion(message.getVersion()).setXid(message.getXid()).build();
    parent.getChannel().writeAndFlush(makeMessageListenerWrapper(reply));
}
Also used : EchoReplyInputBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInputBuilder) EchoReplyInput(org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInput)

Example 3 with EchoReplyInput

use of org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInput in project openflowplugin by opendaylight.

the class MockPlugin method onEchoRequestMessage.

@Override
public void onEchoRequestMessage(final EchoRequestMessage notification) {
    LOGGER.debug("MockPlugin.onEchoRequestMessage() adapter: {}", adapter);
    new Thread(() -> {
        LOGGER.debug("MockPlugin.onEchoRequestMessage().run() started adapter: {}", adapter);
        EchoReplyInputBuilder replyBuilder = new EchoReplyInputBuilder();
        replyBuilder.setVersion((short) 4);
        replyBuilder.setXid(notification.getXid());
        EchoReplyInput echoReplyInput = replyBuilder.build();
        adapter.echoReply(echoReplyInput);
        LOGGER.debug("adapter.EchoReply(Input) sent : ", echoReplyInput.toString());
        LOGGER.debug("MockPlugin.onEchoRequestMessage().run() finished adapter: {}", adapter);
    }).start();
}
Also used : EchoReplyInputBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInputBuilder) EchoReplyInput(org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInput)

Example 4 with EchoReplyInput

use of org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInput in project openflowplugin by opendaylight.

the class EchoReplyInputMessageFactoryTest method testDataSerialize.

/**
 * Testing of {@link EchoReplyInputMessageFactory} for correct message serialization.
 */
@Test
public void testDataSerialize() throws Exception {
    byte[] dataToTest = new byte[] { 91, 92, 93, 94, 95, 96, 97, 98 };
    EchoReplyInputBuilder erib = new EchoReplyInputBuilder();
    BufferHelper.setupHeader(erib, EncodeConstants.OF13_VERSION_ID);
    erib.setData(dataToTest);
    EchoReplyInput eri = erib.build();
    ByteBuf out = UnpooledByteBufAllocator.DEFAULT.buffer();
    echoFactory.serialize(eri, out);
    BufferHelper.checkHeaderV13(out, ECHO_REPLY_MESSAGE_CODE_TYPE, 8 + dataToTest.length);
    byte[] outData = new byte[dataToTest.length];
    out.readBytes(outData);
    Assert.assertArrayEquals("Wrong - different output data.", dataToTest, outData);
    out.release();
}
Also used : EchoReplyInputBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInputBuilder) EchoReplyInput(org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInput) ByteBuf(io.netty.buffer.ByteBuf) Test(org.junit.Test)

Example 5 with EchoReplyInput

use of org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInput in project openflowplugin by opendaylight.

the class EchoReplyInputMessageFactoryTest method testV13.

/**
 * Testing of {@link EchoReplyInputMessageFactory} for correct translation from POJO.
 */
@Test
public void testV13() throws Exception {
    EchoReplyInputBuilder erib = new EchoReplyInputBuilder();
    BufferHelper.setupHeader(erib, EncodeConstants.OF13_VERSION_ID);
    EchoReplyInput eri = erib.build();
    ByteBuf out = UnpooledByteBufAllocator.DEFAULT.buffer();
    echoFactory.serialize(eri, out);
    BufferHelper.checkHeaderV13(out, ECHO_REPLY_MESSAGE_CODE_TYPE, 8);
}
Also used : EchoReplyInputBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInputBuilder) EchoReplyInput(org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInput) ByteBuf(io.netty.buffer.ByteBuf) Test(org.junit.Test)

Aggregations

EchoReplyInput (org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInput)5 EchoReplyInputBuilder (org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoReplyInputBuilder)5 Test (org.junit.Test)4 ByteBuf (io.netty.buffer.ByteBuf)3 EchoRequestMessageBuilder (org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoRequestMessageBuilder)1