From c1494a558cada71c1318c160acaf819e3a82ac68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 23 Dec 2015 23:10:50 +0000 Subject: [PATCH] tests: pcapparse: add check for 0-sized packets https://bugzilla.gnome.org/show_bug.cgi?id=756573 --- tests/check/elements/pcapparse.c | 47 ++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/tests/check/elements/pcapparse.c b/tests/check/elements/pcapparse.c index 8a2a054544..d4e048c380 100644 --- a/tests/check/elements/pcapparse.c +++ b/tests/check/elements/pcapparse.c @@ -1,5 +1,6 @@ #include "parser.h" #include +#include static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, @@ -67,6 +68,51 @@ GST_START_TEST (test_parse_frames_with_eth_padding) gst_parser_test_split (pcap_frame_with_eth_padding, sizeof (pcap_frame_with_eth_padding)); } + +GST_END_TEST; + +static const guint8 zerosize_data[] = { + 0xd4, 0xc3, 0xb2, 0xa1, 0x02, 0x00, 0x04, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, + 0xd3, 0xff, 0x7a, 0x56, 0xbb, 0xd8, 0x0e, 0x00, + 0x2a, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x45, 0x00, + 0x00, 0x1c, 0x06, 0xe7, 0x40, 0x00, 0x40, 0x11, + 0x35, 0xe8, 0x7f, 0x00, 0x00, 0x01, 0x7f, 0x00, + 0x00, 0x01, 0xd2, 0xa3, 0x13, 0x8c, 0x00, 0x08, + 0xfe, 0x1b +}; + +GST_START_TEST (test_parse_zerosize_frames) +{ + GstBuffer *in_buf, *out_buf; + GstHarness *h; + gsize data_size; + + h = gst_harness_new ("pcapparse"); + + gst_harness_set_src_caps_str (h, "raw/x-pcap"); + + data_size = sizeof (zerosize_data); + + in_buf = gst_buffer_new_wrapped (g_memdup (zerosize_data, data_size), + data_size); + + gst_harness_push (h, in_buf); + gst_harness_play (h); + gst_harness_push_event (h, gst_event_new_eos ()); + + /* check that a buffer comes out and that it is 0 bytes in size */ + out_buf = gst_harness_pull (h); + + fail_unless (gst_buffer_get_size (out_buf) == 0); + + gst_buffer_unref (out_buf); + gst_harness_teardown (h); +} + GST_END_TEST; static Suite * @@ -86,6 +132,7 @@ pcapparse_suite (void) suite_add_tcase (s, tc_chain); tcase_add_test (tc_chain, test_parse_frames_with_eth_padding); + tcase_add_test (tc_chain, test_parse_zerosize_frames); return s; }