blob: 08b0a775b7e4384f3c3c65f179d46116c632a962 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001// Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior University
2// Copyright (c) 2011, 2012 Open Networking Foundation
3// Copyright (c) 2012, 2013 Big Switch Networks, Inc.
4// This library was generated by the LoxiGen Compiler.
5// See the file LICENSE.txt which should have been included in the source distribution
6
7// Automatically generated by LOXI from template unit_test.java
8// Do not modify
9
10package org.projectfloodlight.openflow.protocol.ver13;
11
12import org.projectfloodlight.openflow.protocol.*;
13import org.projectfloodlight.openflow.protocol.action.*;
14import org.projectfloodlight.openflow.protocol.actionid.*;
15import org.projectfloodlight.openflow.protocol.bsntlv.*;
16import org.projectfloodlight.openflow.protocol.errormsg.*;
17import org.projectfloodlight.openflow.protocol.meterband.*;
18import org.projectfloodlight.openflow.protocol.instruction.*;
19import org.projectfloodlight.openflow.protocol.instructionid.*;
20import org.projectfloodlight.openflow.protocol.match.*;
21import org.projectfloodlight.openflow.protocol.oxm.*;
22import org.projectfloodlight.openflow.protocol.queueprop.*;
23import org.projectfloodlight.openflow.types.*;
24import org.projectfloodlight.openflow.util.*;
25import org.projectfloodlight.openflow.exceptions.*;
26import static org.junit.Assert.*;
27import org.junit.Test;
28import org.junit.Before;
29import org.jboss.netty.buffer.ChannelBuffer;
30import org.jboss.netty.buffer.ChannelBuffers;
31import org.hamcrest.CoreMatchers;
32
33
34
35public class OFBadRequestErrorMsgVer13Test {
36 OFErrorMsgs factory;
37
38 final static byte[] BAD_REQUEST_ERROR_MSG_SERIALIZED =
39 new byte[] { 0x4, 0x1, 0x0, 0xf, 0x12, 0x34, 0x56, 0x78, 0x0, 0x1, 0x0, 0x8, 0x61, 0x62, 0x63 };
40
41 @Before
42 public void setup() {
43 factory = OFErrorMsgsVer13.INSTANCE;
44 }
45
46 @Test
47 public void testWrite() {
48 OFBadRequestErrorMsg.Builder builder = factory.buildBadRequestErrorMsg();
49 builder.setXid(0x12345678)
50 .setCode(OFBadRequestCode.BUFFER_UNKNOWN)
51 .setData(OFErrorCauseData.of(new byte[] { 0x61, 0x62, 0x63 }, OFVersion.OF_13));;
52 OFBadRequestErrorMsg badRequestErrorMsg = builder.build();
53 ChannelBuffer bb = ChannelBuffers.dynamicBuffer();
54 badRequestErrorMsg.writeTo(bb);
55 byte[] written = new byte[bb.readableBytes()];
56 bb.readBytes(written);
57
58 assertThat(written, CoreMatchers.equalTo(BAD_REQUEST_ERROR_MSG_SERIALIZED));
59 }
60
61 @Test
62 public void testRead() throws Exception {
63 OFBadRequestErrorMsg.Builder builder = factory.buildBadRequestErrorMsg();
64 builder.setXid(0x12345678)
65 .setCode(OFBadRequestCode.BUFFER_UNKNOWN)
66 .setData(OFErrorCauseData.of(new byte[] { 0x61, 0x62, 0x63 }, OFVersion.OF_13));;
67 OFBadRequestErrorMsg badRequestErrorMsgBuilt = builder.build();
68
69 ChannelBuffer input = ChannelBuffers.copiedBuffer(BAD_REQUEST_ERROR_MSG_SERIALIZED);
70
71 // FIXME should invoke the overall reader once implemented
72 OFBadRequestErrorMsg badRequestErrorMsgRead = OFBadRequestErrorMsgVer13.READER.readFrom(input);
73 assertEquals(BAD_REQUEST_ERROR_MSG_SERIALIZED.length, input.readerIndex());
74
75 assertEquals(badRequestErrorMsgBuilt, badRequestErrorMsgRead);
76 }
77
78 @Test
79 public void testReadWrite() throws Exception {
80 ChannelBuffer input = ChannelBuffers.copiedBuffer(BAD_REQUEST_ERROR_MSG_SERIALIZED);
81
82 // FIXME should invoke the overall reader once implemented
83 OFBadRequestErrorMsg badRequestErrorMsg = OFBadRequestErrorMsgVer13.READER.readFrom(input);
84 assertEquals(BAD_REQUEST_ERROR_MSG_SERIALIZED.length, input.readerIndex());
85
86 // write message again
87 ChannelBuffer bb = ChannelBuffers.dynamicBuffer();
88 badRequestErrorMsg.writeTo(bb);
89 byte[] written = new byte[bb.readableBytes()];
90 bb.readBytes(written);
91
92 assertThat(written, CoreMatchers.equalTo(BAD_REQUEST_ERROR_MSG_SERIALIZED));
93 }
94
95}