blob: 38e6a924aa764fafc509015f3b2d998cf12336dd [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
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080027import org.junit.Test;
28
29/**
30 * @author shudong.zhou@bigswitch.com
31 */
32public class TCPTest {
33 private byte[] pktSerialized = new byte[] { 0x45, 0x20,
34 0x00, 0x34, 0x1d, (byte) 0x85, 0x00, 0x00, 0x32, 0x06,
35 0x31, 0x1e, 0x4a, 0x7d, 0x2d, 0x6d, (byte) 0xc0, (byte) 0xa8,
36 0x01, 0x6f, 0x03, (byte) 0xe1, (byte) 0xc0, 0x32, (byte) 0xe3, (byte) 0xad,
37 (byte) 0xee, (byte) 0x88, (byte) 0xb7, (byte) 0xda, (byte) 0xd8, 0x24, (byte) 0x80, 0x10,
38 0x01, 0x0b, 0x59, 0x33, 0x00, 0x00, 0x01, 0x01,
39 0x08, 0x0a, 0x20, (byte) 0x9a, 0x41, 0x04, 0x07, 0x76,
40 0x53, 0x1f};
41
42 @Test
43 public void testSerialize() {
44 IPacket packet = new IPv4()
45 .setDiffServ((byte) 0x20)
46 .setIdentification((short) 0x1d85)
47 .setFlags((byte) 0x00)
48 .setTtl((byte) 50)
49 .setSourceAddress("74.125.45.109")
50 .setDestinationAddress("192.168.1.111")
51 .setPayload(new TCP()
52 .setSourcePort((short) 993)
53 .setDestinationPort((short) 49202)
54 .setSequence(0xe3adee88)
55 .setAcknowledge(0xb7dad824)
56 .setDataOffset((byte) 8)
57 .setFlags((short) 0x10)
58 .setWindowSize((short) 267)
59 .setOptions(new byte[] {0x01, 0x01, 0x08, 0x0a, 0x20, (byte) 0x9a,
60 0x41, 0x04, 0x07, 0x76, 0x53, 0x1f})
61 .setPayload(null)
62 );
63 byte[] actual = packet.serialize();
64 assertTrue(Arrays.equals(pktSerialized, actual));
65 }
66
67 @Test
68 public void testDeserialize() {
69 IPacket packet = new IPv4();
70 packet.deserialize(pktSerialized, 0, pktSerialized.length);
71 byte[] pktSerialized1 = packet.serialize();
72 assertTrue(Arrays.equals(pktSerialized, pktSerialized1));
73 }
74}