blob: 9d5f084d98bdbe66484697366c45409361c7a6cf [file] [log] [blame]
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001/**
Ray Milkey269ffb92014-04-03 14:43:30 -07002 * 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 **/
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080017
18/**
Ray Milkey269ffb92014-04-03 14:43:30 -070019 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080020 */
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 ICMPTest {
Ray Milkey269ffb92014-04-03 14:43:30 -070033 private byte[] pktSerialized = new byte[]{
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080034 // (byte) 0xc8, 0x2a, 0x14, 0x2d, 0x35, (byte) 0xf1,
35 // 0x00, 0x0c, 0x29, 0x3b, (byte) 0x95, (byte) 0xf2, 0x08, 0x0,
36 0x45, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x40, 0x00, 0x40, 0x01,
37 (byte) 0xa3, (byte) 0xcb,
38 (byte) 0xc0, (byte) 0xa8, (byte) 0x0a, (byte) 0xe7,
39 (byte) 0xc0, (byte) 0xa8, (byte) 0x0a, (byte) 0xdb,
40 0x08, 0x00, 0x7f, 0x0a, 0x76, (byte) 0xf2, 0x00, 0x02,
Ray Milkey269ffb92014-04-03 14:43:30 -070041 0x01, 0x01, 0x01};
42
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080043 @Test
44 public void testSerialize() {
45 IPacket packet = new IPv4()
Ray Milkey269ffb92014-04-03 14:43:30 -070046 .setIdentification((short) 0)
47 .setFlags((byte) 0x02)
48 .setTtl((byte) 64)
49 .setSourceAddress("192.168.10.231")
50 .setDestinationAddress("192.168.10.219")
51 .setPayload(new ICMP()
52 .setIcmpType((byte) 8)
53 .setIcmpCode((byte) 0)
54 .setPayload(new Data(new byte[]
55 {0x76, (byte) 0xf2, 0x0, 0x2, 0x1, 0x1, 0x1}))
56 );
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080057 byte[] actual = packet.serialize();
58 assertTrue(Arrays.equals(pktSerialized, actual));
59 }
Ray Milkey269ffb92014-04-03 14:43:30 -070060
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080061 @Test
62 public void testDeserialize() {
63 IPacket packet = new IPv4();
64 packet.deserialize(pktSerialized, 0, pktSerialized.length);
65 byte[] pktSerialized1 = packet.serialize();
66 assertTrue(Arrays.equals(pktSerialized, pktSerialized1));
67 }
68}