XDP test harness
A test harness that can be used to test the implementation of XDP and XDP programs.
Requirements
Python 3.5, bcc, Pyroute2, Scapy
Usage
Running
To start the test harness, run python3 -m xdp_test_harness.runner in a folder
containing tests as a superuser. There are three commands that can be used:
client
Start a client, running tests using network interfaces to process packets by XDP
program. One can further specify which tests to run, using unittest's format.
That is modules, classes and methods separated by dots, for example python3 -m xdp_test_harness.runner client test_general.ReturnValuesBasic.
bptr
Similar to the client command, but uses the BPF_PROG_TEST_RUN syscall
command instead of a server to process packets by an XDP program.
server
Starts a server, used by client command to send packets.
Configuration
Configuration of interfaces to be used for testing is done in the config.py
file. In the configuration file there are two variables:
local_server_ctx
A variable specifying the interface of the server, used for testing, and the interface of the server used for communication with a client.
local_server_ctx = ContextServer(
ContextLocal("enp0s31f6"),
ContextCommunication("192.168.0.106", 6555),
)
remote_server_ctxs
List of contexts specifying one physical testing interface and one virtual
testing interface. Elements of the list are either ContextClient objects,
for physical interfaces, or objects created by new_virtual_ctx function,
for virtual interfaces.
remote_server_ctxs = ContextClientList([
ContextClient(
ContextLocal("enp0s31f6", xdp_mode=XDPFlag.SKB_MODE),
ContextCommunication("192.168.0.107", 6555)
),
new_virtual_ctx(
ContextLocal("a_to_b", xdp_mode=XDPFlag.DRV_MODE),
ContextCommunication("192.168.1.1"),
"test_b",
ContextLocal("b_to_a", xdp_mode=XDPFlag.DRV_MODE),
ContextCommunication("192.168.1.2", 6000),
),
])
Creating new tests
To create a new test, create a class inheriting from XDPCase. This class
should be located in a file named with a test_ prefix and placed in the
tests folder. Each method of this class, that should be run while testing,
has to be named with a test_ prefix.
Each test should either call both load_bpf and attach_xdp methods in this
order, before calling send_packets, or be decorated with
usingCustomLoader and attach own XDP program to the interface. After
attaching attaching an XDP program, calling send_packets, returns a
SendResult object, containing lists of packets that arrived to each
interface engaged in testing.
Release files for xdp-test-harness 0.1.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| xdp-test-harness-0.1.4.tar.gz | 13.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| xdp_test_harness-0.1.4-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 40.3 kB
Release files / xdp-test-harness-0.1.4.tar.gz
| Download URL | xdp-test-harness-0.1.4.tar.gz |
|---|---|
| Size | 13.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
b32ce257679e806ac872563e60a5ba44ec69a88f920ad6041ad8163171b871e8
|
|
BLAKE2b-256 checksum How to use checksums |
6eae351ced60cc62c0acf1eef593e6ca08d3ca8912f7c8a3a7206a878a110e48
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.9
|
Release files / xdp_test_harness-0.1.4-py3-none-any.whl
| Download URL | xdp_test_harness-0.1.4-py3-none-any.whl |
|---|---|
| Size | 27.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
697580c10ec5191a8471a9941ada4d9c9cd19909b9a5065213693ba664b346e8
|
|
BLAKE2b-256 checksum How to use checksums |
4843fe72db9c35eda8e229ab117a803f3e23305c81a247bebd84fd81e8d7b6e5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.9
|