wireshark/test
Daniel Dulaney 62af671bf3 Lua: add DissectorTable.try_heuristics() function
Add DissectorTable.try_heuristics(name, tvb, pinfo, tree). Previously,
there was no way for a Lua plugin to run an existing heuristic
dissector.

Based on Gerrit change 18718. Closes #17220.
2021-03-26 07:15:16 +00:00
..
baseline Qt: Copy->Value - don't zero pad hex values 2021-03-11 07:17:58 +00:00
captures ieee80211: Support decrypting Fast BSS Transition with roaming 2021-03-16 14:36:26 +00:00
config
keys
lua Lua: add DissectorTable.try_heuristics() function 2021-03-26 07:15:16 +00:00
protobuf_lang_files
suite_dfilter
suite_dissectors Qt: Copy->Value - don't zero pad hex values 2021-03-11 07:17:58 +00:00
README.test
conftest.py
fixtures.py
fixtures_ws.py tests: skip plugin count test if feature is disabled 2021-02-26 15:57:10 +00:00
hosts.custom
hosts.global
hosts.personal
matchers.py
sampleif.py
subprocesstest.py
suite_capture.py
suite_clopts.py tests: skip plugin count test if feature is disabled 2021-02-26 15:57:10 +00:00
suite_decryption.py test: add missing raw string regex identifier. 2021-03-25 08:16:10 +00:00
suite_dissection.py
suite_extcaps.py
suite_fileformats.py
suite_follow.py
suite_follow_dccp.py Replaced large NetPerfMeter captures by one small capture. 2021-03-04 20:27:24 +01:00
suite_io.py
suite_mergecap.py
suite_nameres.py
suite_netperfmeter.py NetPerfMeter: Drop "protocol" from the name 2021-03-07 18:09:10 +00:00
suite_outputformats.py
suite_release.py
suite_sharkd.py
suite_text2pcap.py
suite_unittests.py
suite_wslua.py Lua: add DissectorTable.try_heuristics() function 2021-03-26 07:15:16 +00:00
test.py
travis-upload-artifacts.sh
util_dump_dhcp_pcap.py

README.test

Wireshark Tests

The recommended steps to prepare for and to run tests:

* Install two Python packages, pytest: `pip install pytest pytest-xdist`
* Build programs (“wireshark”, “tshark”, etc.): `ninja`
* Build additional programs for the “unittests” suite: `ninja test-programs`
* Run tests in the build directory: `pytest`

Replace `ninja test-programs` by `make test-programs` as needed.

See the “Wireshark Tests” chapter of the Developer's Guide for details:
https://www.wireshark.org/docs/wsdg_html_chunked/ChapterTests.html

If you need to update the baseline files use the following commands (on a Linux system)
mkdir ~/.config/wireshark/profiles/ctest
TZ=UTC WIRESHARK_RUN_FROM_BUILD_DIRECTORY=1 build/run/tshark -C ctest -T ek -r test/captures/dhcp.pcap > test/baseline/dhcp.ek
TZ=UTC WIRESHARK_RUN_FROM_BUILD_DIRECTORY=1 build/run/tshark -C ctest -T json -r test/captures/dhcp.pcap > test/baseline/dhcp.json
TZ=UTC WIRESHARK_RUN_FROM_BUILD_DIRECTORY=1 build/run/tshark -C ctest -T jsonraw -r test/captures/dhcp.pcap > test/baseline/dhcp.jsonraw
TZ=UTC WIRESHARK_RUN_FROM_BUILD_DIRECTORY=1 build/run/tshark -C ctest -T ek -r test/captures/dhcp.pcap -x > test/baseline/dhcp-raw.ek