blob: 4817a99bdae81273765ee8c680cd7cb922558ab6 [file] [log] [blame]
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001/**
2* Copyright 2011, Big Switch Networks, Inc.
3* Originally created by David Erickson, Stanford University
4*
5* Licensed under the Apache License, Version 2.0 (the "License"); you may
6* not use this file except in compliance with the License. You may obtain
7* a copy of the License at
8*
9* http://www.apache.org/licenses/LICENSE-2.0
10*
11* Unless required by applicable law or agreed to in writing, software
12* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14* License for the specific language governing permissions and limitations
15* under the License.
16**/
17
18/**
19 *
20 */
Jonathan Hartdeda0ba2014-04-03 11:14:12 -070021package net.onrc.onos.core.packet;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080022
23import static org.junit.Assert.assertTrue;
24
25import java.util.Arrays;
26
Jonathan Hartdeda0ba2014-04-03 11:14:12 -070027import net.onrc.onos.core.packet.IPacket;
28import net.onrc.onos.core.packet.IPv4;
29import net.onrc.onos.core.packet.TCP;
Jonathan Hart96892d12014-03-26 20:21:29 -070030
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080031import org.junit.Test;
32
33/**
34 * @author shudong.zhou@bigswitch.com
35 */
36public class TCPTest {
37 private byte[] pktSerialized = new byte[] { 0x45, 0x20,
38 0x00, 0x34, 0x1d, (byte) 0x85, 0x00, 0x00, 0x32, 0x06,
39 0x31, 0x1e, 0x4a, 0x7d, 0x2d, 0x6d, (byte) 0xc0, (byte) 0xa8,
40 0x01, 0x6f, 0x03, (byte) 0xe1, (byte) 0xc0, 0x32, (byte) 0xe3, (byte) 0xad,
41 (byte) 0xee, (byte) 0x88, (byte) 0xb7, (byte) 0xda, (byte) 0xd8, 0x24, (byte) 0x80, 0x10,
42 0x01, 0x0b, 0x59, 0x33, 0x00, 0x00, 0x01, 0x01,
43 0x08, 0x0a, 0x20, (byte) 0x9a, 0x41, 0x04, 0x07, 0x76,
44 0x53, 0x1f};
45
46 @Test
47 public void testSerialize() {
48 IPacket packet = new IPv4()
49 .setDiffServ((byte) 0x20)
50 .setIdentification((short) 0x1d85)
51 .setFlags((byte) 0x00)
52 .setTtl((byte) 50)
53 .setSourceAddress("74.125.45.109")
54 .setDestinationAddress("192.168.1.111")
55 .setPayload(new TCP()
56 .setSourcePort((short) 993)
57 .setDestinationPort((short) 49202)
58 .setSequence(0xe3adee88)
59 .setAcknowledge(0xb7dad824)
60 .setDataOffset((byte) 8)
61 .setFlags((short) 0x10)
62 .setWindowSize((short) 267)
63 .setOptions(new byte[] {0x01, 0x01, 0x08, 0x0a, 0x20, (byte) 0x9a,
64 0x41, 0x04, 0x07, 0x76, 0x53, 0x1f})
65 .setPayload(null)
66 );
67 byte[] actual = packet.serialize();
68 assertTrue(Arrays.equals(pktSerialized, actual));
69 }
70
71 @Test
72 public void testDeserialize() {
73 IPacket packet = new IPv4();
74 packet.deserialize(pktSerialized, 0, pktSerialized.length);
75 byte[] pktSerialized1 = packet.serialize();
76 assertTrue(Arrays.equals(pktSerialized, pktSerialized1));
77 }
78}