tests: Add AVTP source tests
authorAndre Guedes <andre.guedes@intel.com>
Thu, 2 May 2019 17:52:42 +0000 (10:52 -0700)
committerEderson de Souza <ederson.desouza@intel.com>
Wed, 3 Jul 2019 16:59:35 +0000 (09:59 -0700)
This patch adds test cases for the AVTP source element. For now, only
properties get() and set() are covered.

tests/check/Makefile.am
tests/check/elements/avtpsrc.c [new file with mode: 0644]
tests/check/meson.build

index 513b85f..8df7237 100644 (file)
@@ -40,7 +40,7 @@ check_assrender =
 endif
 
 if USE_AVTP
-check_avtp = elements/avtpaafpay elements/avtpaafdepay elements/avtpsink
+check_avtp = elements/avtpaafpay elements/avtpaafdepay elements/avtpsink elements/avtpsrc
 else
 check_avtp =
 endif
@@ -513,6 +513,9 @@ elements_avtpaafdepay_LDADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(LDADD)
 elements_avtpsink_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(AM_CFLAGS)
 elements_avtpsink_LDADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(LDADD)
 
+elements_avtpsrc_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(AM_CFLAGS)
+elements_avtpsrc_LDADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(LDADD)
+
 elements_mpegtsmux_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(AM_CFLAGS)
 elements_mpegtsmux_LDADD = $(GST_PLUGINS_BASE_LIBS) $(GST_VIDEO_LIBS) $(GST_BASE_LIBS) $(LDADD)
 
diff --git a/tests/check/elements/avtpsrc.c b/tests/check/elements/avtpsrc.c
new file mode 100644 (file)
index 0000000..39773dc
--- /dev/null
@@ -0,0 +1,60 @@
+/*
+ * GStreamer AVTP Plugin
+ * Copyright (C) 2019 Intel Corporation
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301 USA
+ */
+
+#include <gst/check/gstcheck.h>
+
+GST_START_TEST (test_properties)
+{
+  GstElement *element;
+  const gchar *ifname = "enp1s0";
+  const gchar *address = "01:AA:BB:CC:DD:EE";
+  gchar *str;
+
+  element = gst_check_setup_element ("avtpsrc");
+
+  g_object_set (G_OBJECT (element), "ifname", ifname, NULL);
+  g_object_get (G_OBJECT (element), "ifname", &str, NULL);
+  fail_unless_equals_string (str, ifname);
+  g_free (str);
+
+  g_object_set (G_OBJECT (element), "address", address, NULL);
+  g_object_get (G_OBJECT (element), "address", &str, NULL);
+  fail_unless_equals_string (str, address);
+  g_free (str);
+
+  gst_check_teardown_element (element);
+}
+
+GST_END_TEST;
+
+static Suite *
+avtpsrc_suite (void)
+{
+  Suite *s = suite_create ("avtpsrc");
+  TCase *tc_chain = tcase_create ("general");
+
+  suite_add_tcase (s, tc_chain);
+  tcase_add_test (tc_chain, test_properties);
+
+  return s;
+}
+
+GST_CHECK_MAIN (avtpsrc);
index dd745cd..60a64eb 100644 (file)
@@ -73,6 +73,7 @@ if host_machine.system() != 'windows'
     [['elements/avtpaafpay.c'], not avtp_dep.found(), [avtp_dep]],
     [['elements/avtpaafdepay.c'], not avtp_dep.found(), [avtp_dep]],
     [['elements/avtpsink.c'], not avtp_dep.found(), [avtp_dep]],
+    [['elements/avtpsrc.c'], not avtp_dep.found(), [avtp_dep]],
     [['elements/ccconverter.c']],
     [['elements/cccombiner.c']],
     [['elements/ccextractor.c']],