blob: e09ae24af63c395f2029e48a536613df2fcd8632 [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.Data;
28import net.onrc.onos.core.packet.ICMP;
29import net.onrc.onos.core.packet.IPacket;
30import net.onrc.onos.core.packet.IPv4;
Jonathan Hart96892d12014-03-26 20:21:29 -070031
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080032import org.junit.Test;
33
34/**
35 * @author shudong.zhou@bigswitch.com
36 */
37public class ICMPTest {
38 private byte[] pktSerialized = new byte[] {
39 // (byte) 0xc8, 0x2a, 0x14, 0x2d, 0x35, (byte) 0xf1,
40 // 0x00, 0x0c, 0x29, 0x3b, (byte) 0x95, (byte) 0xf2, 0x08, 0x0,
41 0x45, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x40, 0x00, 0x40, 0x01,
42 (byte) 0xa3, (byte) 0xcb,
43 (byte) 0xc0, (byte) 0xa8, (byte) 0x0a, (byte) 0xe7,
44 (byte) 0xc0, (byte) 0xa8, (byte) 0x0a, (byte) 0xdb,
45 0x08, 0x00, 0x7f, 0x0a, 0x76, (byte) 0xf2, 0x00, 0x02,
46 0x01, 0x01, 0x01 };
47 @Test
48 public void testSerialize() {
49 IPacket packet = new IPv4()
50 .setIdentification((short) 0)
51 .setFlags((byte) 0x02)
52 .setTtl((byte) 64)
53 .setSourceAddress("192.168.10.231")
54 .setDestinationAddress("192.168.10.219")
55 .setPayload(new ICMP()
56 .setIcmpType((byte) 8)
57 .setIcmpCode((byte) 0)
58 .setPayload(new Data(new byte[]
59 {0x76, (byte) 0xf2, 0x0, 0x2, 0x1, 0x1, 0x1}))
60 );
61 byte[] actual = packet.serialize();
62 assertTrue(Arrays.equals(pktSerialized, actual));
63 }
64
65 @Test
66 public void testDeserialize() {
67 IPacket packet = new IPv4();
68 packet.deserialize(pktSerialized, 0, pktSerialized.length);
69 byte[] pktSerialized1 = packet.serialize();
70 assertTrue(Arrays.equals(pktSerialized, pktSerialized1));
71 }
72}