Removed legacy code that wasn't being used.
[openflowjava.git] / third-party / openflow-codec / src / test / java / org / openflow / codec / protocol / OFPErrorMsgTest.java
diff --git a/third-party/openflow-codec/src/test/java/org/openflow/codec/protocol/OFPErrorMsgTest.java b/third-party/openflow-codec/src/test/java/org/openflow/codec/protocol/OFPErrorMsgTest.java
deleted file mode 100644 (file)
index 7d08149..0000000
+++ /dev/null
@@ -1,103 +0,0 @@
-package org.openflow.codec.protocol;
-
-import java.util.Arrays;
-import java.util.List;
-
-import junit.framework.TestCase;
-
-import org.openflow.codec.io.DataBuffers;
-import org.openflow.codec.io.IDataBuffer;
-import org.openflow.codec.protocol.OFPErrorMsg.OFPHelloFailedCode;
-import org.openflow.codec.protocol.factory.OFPBasicFactoryImpl;
-import org.openflow.codec.protocol.factory.OFPMessageFactory;
-import org.openflow.codec.util.OFTestCase;
-
-public class OFPErrorMsgTest extends OFTestCase
-{
-       public void testWriteRead() throws Exception
-       {
-               OFPErrorMsg msg = (OFPErrorMsg) messageFactory
-                               .getMessage(OFPType.ERROR);
-               msg.setMessageFactory(messageFactory);
-               msg.setErrorType(OFPErrorType.OFPET_HELLO_FAILED);
-               msg.setErrorCode((short) OFPHelloFailedCode.OFPHFC_INCOMPATIBLE
-                               .ordinal());
-               IDataBuffer bb = DataBuffers.allocate(1024);
-               bb.clear();
-               msg.writeTo(bb);
-               bb.flip();
-               msg.readFrom(bb);
-               TestCase.assertEquals(OFPErrorType.OFPET_HELLO_FAILED,
-                               msg.getErrorType());
-               TestCase.assertEquals(
-                               (short) OFPHelloFailedCode.OFPHFC_INCOMPATIBLE.ordinal(),
-                               msg.getErrorCode());
-               TestCase.assertNull(msg.getOffendingMsg(bb));
-
-               msg.setOffendingMsg(new OFPHello(), bb);
-               bb.clear();
-               msg.writeTo(bb);
-               bb.flip();
-               msg.readFrom(bb);
-               TestCase.assertEquals(OFPErrorType.OFPET_HELLO_FAILED,
-                               msg.getErrorType());
-               TestCase.assertEquals(
-                               (short) OFPHelloFailedCode.OFPHFC_INCOMPATIBLE.ordinal(),
-                               msg.getErrorCode());
-               TestCase.assertNotNull(msg.getOffendingMsg(bb));
-               TestCase.assertEquals(OFPHello.MINIMUM_LENGTH,
-                               msg.getOffendingMsg(bb).length);
-       }
-
-       public void testWriteReadExperimenter() throws Exception
-       {
-               OFPErrorMsg msg = (OFPErrorMsg) messageFactory
-                               .getMessage(OFPType.ERROR);
-               msg.setMessageFactory(messageFactory);
-               msg.setErrorType(OFPErrorType.OFPET_EXPERIMENTER);
-               msg.setExpType((short) 2);
-               msg.setExperimenter(10);
-               msg.setErrorData(new byte[] { 1, 2, 3, 4 });
-               IDataBuffer bb = DataBuffers.allocate(1024);
-               bb.clear();
-               msg.writeTo(bb);
-               bb.flip();
-               msg.readFrom(bb);
-               TestCase.assertEquals(OFPErrorType.OFPET_EXPERIMENTER,
-                               msg.getErrorType());
-               TestCase.assertEquals((short) 2, msg.getExpType());
-               TestCase.assertEquals(10, msg.getExperimenter());
-               TestCase.assertNull(msg.getOffendingMsg(bb));
-               TestCase.assertTrue(Arrays.equals(new byte[] { 1, 2, 3, 4 },
-                               msg.getErrorData()));
-
-       }
-
-       public void testGarbageAtEnd()
-       {
-               // This is a OFPErrorMsg msg (12 bytes), that encaps a OFVendor msg (24
-               // bytes)
-               // AND some zeros at the end (40 bytes) for a total of 76 bytes
-               // THIS is what an NEC sends in reply to Nox's VENDOR request
-               byte[] oferrorRaw = { 0x01, 0x01, 0x00, 0x4c, 0x00, 0x00, 0x10,
-                               (byte) 0xcc, 0x00, 0x01, 0x00, 0x01, 0x01, 0x04, 0x00, 0x18,
-                               0x00, 0x00, 0x10, (byte) 0xcc, 0x00, 0x00, 0x23, 0x20, 0x00,
-                               0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-                               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-                               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-                               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-                               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-                               0x00 };
-               OFPMessageFactory factory = new OFPBasicFactoryImpl();
-               IDataBuffer buffer = DataBuffers.allocate(1024).wrap(oferrorRaw);
-
-               List<OFPMessage> msgs = factory
-                               .parseMessages(buffer, oferrorRaw.length);
-               TestCase.assertEquals(1, msgs.size());
-               OFPMessage msg = msgs.get(0);
-               TestCase.assertEquals(76, msg.getLengthU());
-               IDataBuffer buffer1 = DataBuffers.allocate(1024);
-               msg.writeTo(buffer1);
-               TestCase.assertEquals(76, buffer1.position());
-       }
-}