tests/check/: Add test for GstNetBuffer + gst_buffer_copy(). Disabled for the time...
authorTim-Philipp Müller <tim@centricular.net>
Fri, 5 Jan 2007 12:19:34 +0000 (12:19 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Fri, 5 Jan 2007 12:19:34 +0000 (12:19 +0000)
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
tests/check/Makefile.am
tests/check/libs/.gitignore
tests/check/libs/netbuffer.c [new file with mode: 0644]

index c2008bea870a508c6beaf9ca8d9fb986153680c7..a3399e6f5603d6a892395246b3a20c3e878f8497 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * 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  <tim at centricular dot net>
 
        * tests/check/Makefile.am:
index 25395da21555e6926852d45518b847dec6c305f8..c62552b09ae7b24caaa26726612422991c19f4df 100644 (file)
@@ -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)
index 96388d6ffa42bfdecc15e13df3519a11bc7c80f2..f63e043fa4182b8e7b63934faa46181543903e50 100644 (file)
@@ -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 (file)
index 0000000..93469ed
--- /dev/null
@@ -0,0 +1,96 @@
+/* GStreamer unit tests for libgstnetbuffer
+ *
+ * Copyright (C) 2006 Tim-Philipp Müller <tim centricular net>
+ *
+ * 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 <config.h>
+#endif
+
+#include <gst/check/gstcheck.h>
+#include <gst/netbuffer/gstnetbuffer.h>
+
+#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 (&copy->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 (&copy->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);