From b0aeb4ce6c34e98a74dba1d08f9dd32a8bb63051 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 5 Jan 2007 12:19:34 +0000 Subject: [PATCH] tests/check/: Add test for GstNetBuffer + gst_buffer_copy(). Disabled for the time being, since it's broken, see #393... Original commit message from CVS: * tests/check/Makefile.am: * tests/check/libs/.cvsignore: * tests/check/libs/netbuffer.c: (GST_START_TEST), (netbuffer_suite): Add test for GstNetBuffer + gst_buffer_copy(). Disabled for the time being, since it's broken, see #393099. --- ChangeLog | 9 ++++ tests/check/Makefile.am | 9 +++- tests/check/libs/.gitignore | 1 + tests/check/libs/netbuffer.c | 96 ++++++++++++++++++++++++++++++++++++ 4 files changed, 114 insertions(+), 1 deletion(-) create mode 100644 tests/check/libs/netbuffer.c diff --git a/ChangeLog b/ChangeLog index c2008bea87..a3399e6f56 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2007-01-05 Tim-Philipp Müller + + * tests/check/Makefile.am: + * tests/check/libs/.cvsignore: + * tests/check/libs/netbuffer.c: (GST_START_TEST), + (netbuffer_suite): + Add test for GstNetBuffer + gst_buffer_copy(). Disabled + for the time being, since it's broken, see #393099. + 2007-01-05 Tim-Philipp Müller * tests/check/Makefile.am: diff --git a/tests/check/Makefile.am b/tests/check/Makefile.am index 25395da215..c62552b09a 100644 --- a/tests/check/Makefile.am +++ b/tests/check/Makefile.am @@ -92,7 +92,7 @@ VALGRIND_TO_FIX = \ libs/video # these tests don't even pass -noinst_PROGRAMS = +noinst_PROGRAMS = libs/netbuffer AM_CFLAGS = $(GST_CFLAGS) $(GST_CHECK_CFLAGS) LDADD = $(GST_LIBS) $(GST_CHECK_LIBS) @@ -124,6 +124,13 @@ libs_cddabasesrc_LDADD = \ $(GST_BASE_LIBS) \ $(LDADD) +libs_netbuffer_CFLAGS = \ + $(GST_PLUGINS_BASE_CFLAGS) \ + $(AM_CFLAGS) +libs_netbuffer_LDADD = \ + $(top_builddir)/gst-libs/gst/netbuffer/libgstnetbuffer-@GST_MAJORMINOR@.la \ + $(LDADD) + libs_tag_CFLAGS = \ $(GST_PLUGINS_BASE_CFLAGS) \ $(AM_CFLAGS) diff --git a/tests/check/libs/.gitignore b/tests/check/libs/.gitignore index 96388d6ffa..f63e043fa4 100644 --- a/tests/check/libs/.gitignore +++ b/tests/check/libs/.gitignore @@ -3,3 +3,4 @@ cddabasesrc video audio tag +netbuffer diff --git a/tests/check/libs/netbuffer.c b/tests/check/libs/netbuffer.c new file mode 100644 index 0000000000..93469ed011 --- /dev/null +++ b/tests/check/libs/netbuffer.c @@ -0,0 +1,96 @@ +/* GStreamer unit tests for libgstnetbuffer + * + * Copyright (C) 2006 Tim-Philipp Müller + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#ifdef HAVE_CONFIG_H +# include +#endif + +#include +#include + +#define DATA_STRING "Yoho this is a string" + +GST_START_TEST (test_netbuffer_copy) +{ + GstNetBuffer *netbuf, *copy; + guint8 ipv6_addr[16] = { 0xff, 0x11, 0xee, 0x22, 0xdd, 0x33, 0xcc, + 0x44, 0xbb, 0x55, 0xaa, 0x66, 0x00, 0x77, 0x99, 0x88 + }; + guint8 ipv6_copy[16]; + guint32 ipv4_copy, ipv4_addr = 0xfe12dc34; + guint16 ipv6_port = 3490; + guint16 ipv4_port = 5678; + guint16 port; + + netbuf = gst_netbuffer_new (); + fail_unless (netbuf != NULL, "failed to create net buffer"); + + gst_netaddress_set_ip4_address (&netbuf->from, ipv4_addr, ipv4_port); + gst_netaddress_set_ip6_address (&netbuf->to, ipv6_addr, ipv6_port); + + GST_BUFFER_DATA (netbuf) = (guint8 *) DATA_STRING; + GST_BUFFER_SIZE (netbuf) = strlen (DATA_STRING); + GST_BUFFER_FLAG_SET (netbuf, GST_BUFFER_FLAG_DISCONT); + GST_BUFFER_FLAG_SET (netbuf, GST_BUFFER_FLAG_READONLY); + + copy = (GstNetBuffer *) gst_buffer_copy (netbuf); + fail_unless (copy != NULL, "failed to copy net buffer"); + fail_unless (GST_IS_NETBUFFER (copy), "copied buffer is not a GstNetBuffer!"); + + fail_unless_equals_int (GST_MINI_OBJECT_REFCOUNT_VALUE (copy), 1); + + fail_unless_equals_int (GST_BUFFER_SIZE (copy), GST_BUFFER_SIZE (netbuf)); + fail_unless (memcmp (GST_BUFFER_DATA (copy), GST_BUFFER_DATA (netbuf), + GST_BUFFER_SIZE (copy)) == 0); + + fail_if (GST_BUFFER_FLAG_IS_SET (copy, GST_BUFFER_FLAG_READONLY)); + fail_unless (GST_BUFFER_FLAG_IS_SET (copy, GST_BUFFER_FLAG_DISCONT)); + + fail_unless (gst_netaddress_get_ip4_address (©->from, &ipv4_copy, &port)); + fail_unless (ipv4_copy == ipv4_addr, + "Copied buffer has wrong IPV4 from address"); + fail_unless (port == ipv4_port, "Copied buffer has wrong IPV4 from port"); + + fail_unless (gst_netaddress_get_ip6_address (©->to, ipv6_copy, &port)); + fail_unless (memcmp (ipv6_copy, ipv6_addr, 16) == 0, + "Copied buffer has wrong IPv6 destination address"); + fail_unless (port == ipv6_port, + "Copied buffer has wrong IPv6 destination port"); + + gst_buffer_unref (netbuf); + gst_buffer_unref (copy); +} + +GST_END_TEST; + +static Suite * +netbuffer_suite (void) +{ + Suite *s = suite_create ("netbuffer"); + TCase *tc_chain = tcase_create ("netbuffer"); + + suite_add_tcase (s, tc_chain); + + tcase_add_test (tc_chain, test_netbuffer_copy); + + return s; +} + +GST_CHECK_MAIN (netbuffer);