All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pcap4j.test.packet.ArpPacketTest Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha.6
Show newest version
package org.pcap4j.test.packet;

import static org.junit.jupiter.api.Assertions.assertEquals;

import java.net.InetAddress;
import java.net.UnknownHostException;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.pcap4j.packet.ArpPacket;
import org.pcap4j.packet.ArpPacket.ArpHeader;
import org.pcap4j.packet.EthernetPacket.Builder;
import org.pcap4j.packet.IllegalRawDataException;
import org.pcap4j.packet.Packet;
import org.pcap4j.packet.SimpleBuilder;
import org.pcap4j.packet.namednumber.ArpHardwareType;
import org.pcap4j.packet.namednumber.ArpOperation;
import org.pcap4j.packet.namednumber.EtherType;
import org.pcap4j.util.ByteArrays;
import org.pcap4j.util.MacAddress;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@SuppressWarnings("javadoc")
public class ArpPacketTest extends AbstractPacketTest {

  private static final Logger logger = LoggerFactory.getLogger(ArpPacketTest.class);

  private final ArpPacket packet;
  private final ArpHardwareType hardwareType;
  private final EtherType protocolType;
  private final byte hardwareLength;
  private final byte protocolLength;
  private final MacAddress srcHardwareAddr;
  private final MacAddress dstHardwareAddr;
  private final InetAddress srcProtocolAddr;
  private final InetAddress dstProtocolAddr;
  private final ArpOperation operation;

  public ArpPacketTest() {
    this.hardwareType = ArpHardwareType.ETHERNET;
    this.protocolType = EtherType.IPV4;
    this.hardwareLength = (byte) MacAddress.SIZE_IN_BYTES;
    this.protocolLength = (byte) ByteArrays.INET4_ADDRESS_SIZE_IN_BYTES;
    this.srcHardwareAddr = MacAddress.getByName("fe:00:00:00:00:01");
    this.dstHardwareAddr = MacAddress.ETHER_BROADCAST_ADDRESS;
    try {
      this.srcProtocolAddr =
          InetAddress.getByAddress(new byte[] {(byte) 192, (byte) 0, (byte) 2, (byte) 1});
      this.dstProtocolAddr =
          InetAddress.getByAddress(new byte[] {(byte) 192, (byte) 0, (byte) 2, (byte) 2});
    } catch (UnknownHostException e) {
      throw new AssertionError();
    }
    this.operation = ArpOperation.REQUEST;

    ArpPacket.Builder ab = new ArpPacket.Builder();
    ab.hardwareType(hardwareType)
        .protocolType(protocolType)
        .hardwareAddrLength(hardwareLength)
        .protocolAddrLength(protocolLength)
        .srcHardwareAddr(srcHardwareAddr)
        .dstHardwareAddr(dstHardwareAddr)
        .srcProtocolAddr(srcProtocolAddr)
        .dstProtocolAddr(dstProtocolAddr)
        .operation(operation);
    this.packet = ab.build();
  }

  @Override
  protected Packet getPacket() {
    return packet;
  }

  @Override
  protected Packet getWholePacket() {
    Builder eb = new Builder();
    eb.dstAddr(packet.getHeader().getDstHardwareAddr())
        .srcAddr(packet.getHeader().getSrcHardwareAddr())
        .type(EtherType.ARP)
        .payloadBuilder(new SimpleBuilder(packet))
        .paddingAtBuild(true);
    return eb.build();
  }

  @BeforeAll
  public static void setUpBeforeClass() throws Exception {
    logger.info("########## " + ArpPacketTest.class.getSimpleName() + " START ##########");
  }

  @AfterAll
  public static void tearDownAfterClass() throws Exception {
    logger.info("########## " + ArpPacketTest.class.getSimpleName() + " END ##########");
  }

  @Test
  public void testGetHeader() {
    ArpHeader h = packet.getHeader();
    assertEquals(hardwareType, h.getHardwareType());
    assertEquals(protocolType, h.getProtocolType());
    assertEquals(hardwareLength, h.getHardwareAddrLength());
    assertEquals(hardwareLength, (byte) h.getHardwareAddrLengthAsInt());
    assertEquals(protocolLength, h.getProtocolAddrLength());
    assertEquals(protocolLength, (byte) h.getProtocolAddrLengthAsInt());
    assertEquals(dstHardwareAddr, h.getDstHardwareAddr());
    assertEquals(srcHardwareAddr, h.getSrcHardwareAddr());
    assertEquals(dstProtocolAddr, h.getDstProtocolAddr());
    assertEquals(srcProtocolAddr, h.getSrcProtocolAddr());
    assertEquals(operation, h.getOperation());

    ArpPacket.Builder ab = packet.getBuilder();
    ArpPacket p;

    ab.hardwareAddrLength((byte) 0);
    ab.protocolAddrLength((byte) 0);
    p = ab.build();
    assertEquals((byte) 0, (byte) p.getHeader().getHardwareAddrLengthAsInt());
    assertEquals((byte) 0, (byte) p.getHeader().getProtocolAddrLengthAsInt());

    ab.hardwareAddrLength((byte) 50);
    ab.protocolAddrLength((byte) 50);
    p = ab.build();
    assertEquals((byte) 50, (byte) p.getHeader().getHardwareAddrLengthAsInt());
    assertEquals((byte) 50, (byte) p.getHeader().getProtocolAddrLengthAsInt());

    ab.hardwareAddrLength((byte) 127);
    ab.protocolAddrLength((byte) 127);
    p = ab.build();
    assertEquals((byte) 127, (byte) p.getHeader().getHardwareAddrLengthAsInt());
    assertEquals((byte) 127, (byte) p.getHeader().getProtocolAddrLengthAsInt());

    ab.hardwareAddrLength((byte) -1);
    ab.protocolAddrLength((byte) -1);
    p = ab.build();
    assertEquals((byte) -1, (byte) p.getHeader().getHardwareAddrLengthAsInt());
    assertEquals((byte) -1, (byte) p.getHeader().getProtocolAddrLengthAsInt());

    ab.hardwareAddrLength((byte) -128);
    ab.protocolAddrLength((byte) -128);
    p = ab.build();
    assertEquals((byte) -128, (byte) p.getHeader().getHardwareAddrLengthAsInt());
    assertEquals((byte) -128, (byte) p.getHeader().getProtocolAddrLengthAsInt());
  }

  @Test
  public void testNewPacket() {
    try {
      ArpPacket p = ArpPacket.newPacket(packet.getRawData(), 0, packet.getRawData().length);
      assertEquals(packet, p);
    } catch (IllegalRawDataException e) {
      throw new AssertionError(e);
    }
  }

  @Test
  public void testNewPacketRandom() {
    RandomPacketTester.testClass(ArpPacket.class, packet);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy