blob: c1132195d20c2818340332a32921c02c0d95ba72 [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.assertEquals;
24import static org.junit.Assert.assertTrue;
25
26import java.util.Arrays;
27
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080028import org.junit.Assert;
29import org.junit.Test;
30
31/**
32 * @author David Erickson (daviderickson@cs.stanford.edu)
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080033 */
34public class IPv4Test {
35 @Test
36 public void testToIPv4Address() {
37 int intIp = 0xc0a80001;
38 String stringIp = "192.168.0.1";
Ray Milkey269ffb92014-04-03 14:43:30 -070039 byte[] byteIp = new byte[]{(byte) 192, (byte) 168, (byte) 0, (byte) 1};
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080040 assertEquals(intIp, IPv4.toIPv4Address(stringIp));
41 assertEquals(intIp, IPv4.toIPv4Address(byteIp));
42 assertTrue(Arrays.equals(byteIp, IPv4.toIPv4AddressBytes(intIp)));
43 assertTrue(Arrays.equals(byteIp, IPv4.toIPv4AddressBytes(stringIp)));
44 }
45
46 @Test
47 public void testToIPv4AddressBytes() {
Ray Milkey269ffb92014-04-03 14:43:30 -070048 byte[] expected = new byte[]{(byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff};
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080049 Assert.assertArrayEquals(expected, IPv4.toIPv4AddressBytes("255.255.255.255"));
Ray Milkey269ffb92014-04-03 14:43:30 -070050 expected = new byte[]{(byte) 0x80, (byte) 0x80, (byte) 0x80, (byte) 0x80};
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080051 Assert.assertArrayEquals(expected, IPv4.toIPv4AddressBytes("128.128.128.128"));
Ray Milkey269ffb92014-04-03 14:43:30 -070052 expected = new byte[]{0x7f, 0x7f, 0x7f, 0x7f};
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080053 Assert.assertArrayEquals(expected, IPv4.toIPv4AddressBytes("127.127.127.127"));
54 }
55
56 @Test
57 public void testSerialize() {
Ray Milkey269ffb92014-04-03 14:43:30 -070058 byte[] expected = new byte[]{0x45, 0x00, 0x00, 0x14, 0x5e, 0x4e,
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080059 0x00, 0x00, 0x3f, 0x06, 0x31, 0x2e, (byte) 0xac, 0x18,
Ray Milkey269ffb92014-04-03 14:43:30 -070060 0x4a, (byte) 0xdf, (byte) 0xab, 0x40, 0x4a, 0x30};
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080061 IPv4 packet = new IPv4()
Ray Milkey269ffb92014-04-03 14:43:30 -070062 .setIdentification((short) 24142)
63 .setTtl((byte) 63)
64 .setProtocol((byte) 0x06)
65 .setSourceAddress("172.24.74.223")
66 .setDestinationAddress("171.64.74.48");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080067 byte[] actual = packet.serialize();
68 assertTrue(Arrays.equals(expected, actual));
69 }
Ray Milkey269ffb92014-04-03 14:43:30 -070070
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080071 @Test
72 public void testDeserialize() {
73 // A real TLSv1 packet
Ray Milkey269ffb92014-04-03 14:43:30 -070074 byte[] pktSerialized = new byte[]{0x45, 0x00,
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080075 0x00, 0x2e, 0x41, (byte) 0xbe, 0x40, 0x00, 0x40, 0x06,
76 (byte) 0xd4, (byte) 0xf0, (byte) 0xc0, (byte) 0xa8, 0x02, (byte) 0xdb, (byte) 0xd0, 0x55,
77 (byte) 0x90, 0x42, (byte) 0xd5, 0x48, 0x01, (byte) 0xbb, (byte) 0xe3, 0x50,
78 (byte) 0xb2, 0x2f, (byte) 0xfc, (byte) 0xf8, (byte) 0xa8, 0x2c, 0x50, 0x18,
79 (byte) 0xff, (byte) 0xff, 0x24, 0x3c, 0x00, 0x00, 0x14, 0x03,
80 0x01, 0x00, 0x01, 0x01
81 };
82 IPv4 packet = new IPv4();
83 packet.deserialize(pktSerialized, 0, pktSerialized.length);
84 byte[] pktSerialized1 = packet.serialize();
85 assertTrue(Arrays.equals(pktSerialized, pktSerialized1));
86 }
87}