blob: a992f842dfd356195d3f64fb05d340c3656d1e24 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2019 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Vincent Perot - Initial API and implementation
* Viet-Hung Phan - Support pcapNg
*******************************************************************************/
package org.eclipse.tracecompass.pcap.core.tests.packet;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import static org.junit.Assume.assumeTrue;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import org.eclipse.tracecompass.internal.pcap.core.packet.BadPacketException;
import org.eclipse.tracecompass.internal.pcap.core.packet.Packet;
import org.eclipse.tracecompass.internal.pcap.core.protocol.PcapProtocol;
import org.eclipse.tracecompass.internal.pcap.core.protocol.ethernet2.EthernetIIPacket;
import org.eclipse.tracecompass.internal.pcap.core.trace.BadPcapFileException;
import org.eclipse.tracecompass.internal.pcap.core.trace.PcapFile;
import org.eclipse.tracecompass.pcap.core.tests.shared.PcapTestTrace;
import org.junit.Before;
import org.junit.Test;
/**
* JUnit Class that tests the generic Packet class and its method.
* *
* @author Vincent Perot
*/
public class PacketTest {
private ByteBuffer fEthernetPacket;
/**
* Initialize the packet.
*/
@Before
public void initialize() {
fEthernetPacket = ByteBuffer.allocate(15);
fEthernetPacket.order(ByteOrder.BIG_ENDIAN);
// Destination MAC - 6 bytes
fEthernetPacket.put((byte) 0x34);
fEthernetPacket.put((byte) 0x67);
fEthernetPacket.put((byte) 0x0C);
fEthernetPacket.put((byte) 0xD2);
fEthernetPacket.put((byte) 0x91);
fEthernetPacket.put((byte) 0x51);
// Source MAC - 6 bytes
fEthernetPacket.put((byte) 0x10);
fEthernetPacket.put((byte) 0xF8);
fEthernetPacket.put((byte) 0x82);
fEthernetPacket.put((byte) 0xB3);
fEthernetPacket.put((byte) 0x44);
fEthernetPacket.put((byte) 0x78);
// Ethertype - 2 bytes
fEthernetPacket.put((byte) 0xA2);
fEthernetPacket.put((byte) 0x56);
// Payload - 1 byte
fEthernetPacket.put((byte) 0xA6);
fEthernetPacket.flip();
}
/**
* Test that verify the correctness of the Packet's methods.
* @throws BadPcapFileException
* Thrown when the file is erroneous. Fails the test.
* @throws IOException
* Thrown when an IO error occurs. Fails the test.
* @throws BadPacketException
* Thrown when a packet is erroneous. Fails the test.
*/
@Test
public void GenericPacketTest() throws BadPacketException, IOException, BadPcapFileException {
PcapTestTrace trace = PcapTestTrace.MOSTLY_TCP;
assumeTrue(trace.exists());
// Get a right pcap/pcapNg trace
try (PcapFile dummy = trace.getTrace();) {
ByteBuffer byteBuffer = fEthernetPacket;
if (byteBuffer == null) {
fail("GenericPacketTest has failed!");
return;
}
Packet packet = new EthernetIIPacket(dummy, null, byteBuffer);
assertTrue(packet.hasProtocol(PcapProtocol.ETHERNET_II));
assertTrue(packet.hasProtocol(PcapProtocol.UNKNOWN));
assertFalse(packet.hasProtocol(PcapProtocol.TCP));
assertEquals(PcapProtocol.ETHERNET_II, packet.getProtocol());
assertEquals(packet, packet.getPacket(PcapProtocol.ETHERNET_II));
assertNull(packet.getPacket(PcapProtocol.TCP));
assertEquals(packet.getChildPacket(), packet.getPacket(PcapProtocol.UNKNOWN));
assertEquals(packet.getPacket(PcapProtocol.ETHERNET_II), packet.getMostEcapsulatedPacket());
assertNull(packet.getParentPacket());
assertFalse(packet.getPcapFile().equals(null));
Packet child = packet.getChildPacket();
if (child == null) {
fail("GenericPacketTest has failed!");
return;
}
assertEquals(packet.getPayload(), child.getPayload());
assertEquals(packet.getGlobalSummaryString(), "Source MAC: 10:f8:82:b3:44:78 , Destination MAC: 34:67:0c:d2:91:51");
}
}
}