add a test for videotestsrc
authorThomas Vander Stichele <thomas@apestaart.org>
Wed, 23 Nov 2005 12:14:10 +0000 (12:14 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Wed, 23 Nov 2005 12:14:10 +0000 (12:14 +0000)
Original commit message from CVS:
add a test for videotestsrc

ChangeLog
check/Makefile.am
check/elements/videotestsrc.c [new file with mode: 0644]
tests/check/Makefile.am
tests/check/elements/videotestsrc.c [new file with mode: 0644]

index 95dc362..71e6036 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
 
+       * check/Makefile.am:
+       * check/elements/videotestsrc.c: (setup_videotestsrc),
+       (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
+       (main):
+         add a test for videotestsrc
+
+2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
+
        * gst/sine/.cvsignore:
        * gst/sine/Makefile.am:
        * gst/sine/gstsinesrc.c:
index 7d603af..6dacfc6 100644 (file)
@@ -31,6 +31,7 @@ check_PROGRAMS = \
        elements/audioconvert \
        elements/audioresample \
        elements/audiotestsrc \
+       elements/videotestsrc \
        elements/volume \
        generic/states \
         pipelines/simple_launch_lines \
diff --git a/check/elements/videotestsrc.c b/check/elements/videotestsrc.c
new file mode 100644 (file)
index 0000000..0dff8cf
--- /dev/null
@@ -0,0 +1,143 @@
+/* GStreamer
+ *
+ * unit test for videotestsrc
+ *
+ * Copyright (C) <2005> Thomas Vander Stichele <thomas at apestaart dot org>
+ *
+ * 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.
+ */
+
+#include <unistd.h>
+
+#include <gst/check/gstcheck.h>
+
+GList *buffers = NULL;
+gboolean have_eos = FALSE;
+
+/* For ease of programming we use globals to keep refs for our floating
+ * src and sink pads we create; otherwise we always have to do get_pad,
+ * get_peer, and then remove references in every test function */
+GstPad *mysinkpad;
+
+
+#define CAPS_TEMPLATE_STRING           \
+    "video/x-raw-yuv, "                        \
+    "format = (fourcc) Y422, "         \
+    "width = (int) [ 1,  MAX ], "      \
+    "height = (int) [ 1,  MAX ], "     \
+    "framerate = (fraction) [ 0/1, MAX ]"
+
+static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
+    GST_PAD_SINK,
+    GST_PAD_ALWAYS,
+    GST_STATIC_CAPS (CAPS_TEMPLATE_STRING)
+    );
+
+GstElement *
+setup_videotestsrc ()
+{
+  GstElement *videotestsrc;
+
+  GST_DEBUG ("setup_videotestsrc");
+  videotestsrc = gst_check_setup_element ("videotestsrc");
+  mysinkpad = gst_check_setup_sink_pad (videotestsrc, &sinktemplate, NULL);
+  gst_pad_set_active (mysinkpad, TRUE);
+
+  return videotestsrc;
+}
+
+void
+cleanup_videotestsrc (GstElement * videotestsrc)
+{
+  GST_DEBUG ("cleanup_videotestsrc");
+
+  g_list_foreach (buffers, (GFunc) gst_mini_object_unref, NULL);
+  g_list_free (buffers);
+  buffers = NULL;
+
+  gst_check_teardown_sink_pad (videotestsrc);
+  gst_check_teardown_element (videotestsrc);
+}
+
+GST_START_TEST (test_all_patterns)
+{
+  GstElement *videotestsrc;
+  GObjectClass *oclass;
+  GParamSpec *property;
+  GEnumValue *values;
+  guint j = 0;
+
+  videotestsrc = setup_videotestsrc ();
+  oclass = G_OBJECT_GET_CLASS (videotestsrc);
+  property = g_object_class_find_property (oclass, "pattern");
+  fail_unless (G_IS_PARAM_SPEC_ENUM (property));
+  values = G_ENUM_CLASS (g_type_class_ref (property->value_type))->values;
+
+
+  while (values[j].value_name) {
+    GST_DEBUG_OBJECT (videotestsrc, "testing pattern %s", values[j].value_name);
+
+    fail_unless (gst_element_set_state (videotestsrc,
+            GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
+        "could not set to playing");
+
+    while (g_list_length (buffers) < 10);
+
+    gst_element_set_state (videotestsrc, GST_STATE_READY);
+
+    g_list_foreach (buffers, (GFunc) gst_mini_object_unref, NULL);
+    g_list_free (buffers);
+    buffers = NULL;
+    ++j;
+  }
+
+  /* cleanup */
+  cleanup_videotestsrc (videotestsrc);
+}
+
+GST_END_TEST;
+
+/* FIXME:
+ * add tests for every colorspace */
+
+Suite *
+videotestsrc_suite (void)
+{
+  Suite *s = suite_create ("videotestsrc");
+  TCase *tc_chain = tcase_create ("general");
+
+  suite_add_tcase (s, tc_chain);
+  tcase_add_test (tc_chain, test_all_patterns);
+
+  return s;
+}
+
+int
+main (int argc, char **argv)
+{
+  int nf;
+
+  Suite *s = videotestsrc_suite ();
+  SRunner *sr = srunner_create (s);
+
+  gst_check_init (&argc, &argv);
+
+  srunner_run_all (sr, CK_NORMAL);
+  nf = srunner_ntests_failed (sr);
+  srunner_free (sr);
+
+  return nf;
+}
index 7d603af..6dacfc6 100644 (file)
@@ -31,6 +31,7 @@ check_PROGRAMS = \
        elements/audioconvert \
        elements/audioresample \
        elements/audiotestsrc \
+       elements/videotestsrc \
        elements/volume \
        generic/states \
         pipelines/simple_launch_lines \
diff --git a/tests/check/elements/videotestsrc.c b/tests/check/elements/videotestsrc.c
new file mode 100644 (file)
index 0000000..0dff8cf
--- /dev/null
@@ -0,0 +1,143 @@
+/* GStreamer
+ *
+ * unit test for videotestsrc
+ *
+ * Copyright (C) <2005> Thomas Vander Stichele <thomas at apestaart dot org>
+ *
+ * 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.
+ */
+
+#include <unistd.h>
+
+#include <gst/check/gstcheck.h>
+
+GList *buffers = NULL;
+gboolean have_eos = FALSE;
+
+/* For ease of programming we use globals to keep refs for our floating
+ * src and sink pads we create; otherwise we always have to do get_pad,
+ * get_peer, and then remove references in every test function */
+GstPad *mysinkpad;
+
+
+#define CAPS_TEMPLATE_STRING           \
+    "video/x-raw-yuv, "                        \
+    "format = (fourcc) Y422, "         \
+    "width = (int) [ 1,  MAX ], "      \
+    "height = (int) [ 1,  MAX ], "     \
+    "framerate = (fraction) [ 0/1, MAX ]"
+
+static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
+    GST_PAD_SINK,
+    GST_PAD_ALWAYS,
+    GST_STATIC_CAPS (CAPS_TEMPLATE_STRING)
+    );
+
+GstElement *
+setup_videotestsrc ()
+{
+  GstElement *videotestsrc;
+
+  GST_DEBUG ("setup_videotestsrc");
+  videotestsrc = gst_check_setup_element ("videotestsrc");
+  mysinkpad = gst_check_setup_sink_pad (videotestsrc, &sinktemplate, NULL);
+  gst_pad_set_active (mysinkpad, TRUE);
+
+  return videotestsrc;
+}
+
+void
+cleanup_videotestsrc (GstElement * videotestsrc)
+{
+  GST_DEBUG ("cleanup_videotestsrc");
+
+  g_list_foreach (buffers, (GFunc) gst_mini_object_unref, NULL);
+  g_list_free (buffers);
+  buffers = NULL;
+
+  gst_check_teardown_sink_pad (videotestsrc);
+  gst_check_teardown_element (videotestsrc);
+}
+
+GST_START_TEST (test_all_patterns)
+{
+  GstElement *videotestsrc;
+  GObjectClass *oclass;
+  GParamSpec *property;
+  GEnumValue *values;
+  guint j = 0;
+
+  videotestsrc = setup_videotestsrc ();
+  oclass = G_OBJECT_GET_CLASS (videotestsrc);
+  property = g_object_class_find_property (oclass, "pattern");
+  fail_unless (G_IS_PARAM_SPEC_ENUM (property));
+  values = G_ENUM_CLASS (g_type_class_ref (property->value_type))->values;
+
+
+  while (values[j].value_name) {
+    GST_DEBUG_OBJECT (videotestsrc, "testing pattern %s", values[j].value_name);
+
+    fail_unless (gst_element_set_state (videotestsrc,
+            GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
+        "could not set to playing");
+
+    while (g_list_length (buffers) < 10);
+
+    gst_element_set_state (videotestsrc, GST_STATE_READY);
+
+    g_list_foreach (buffers, (GFunc) gst_mini_object_unref, NULL);
+    g_list_free (buffers);
+    buffers = NULL;
+    ++j;
+  }
+
+  /* cleanup */
+  cleanup_videotestsrc (videotestsrc);
+}
+
+GST_END_TEST;
+
+/* FIXME:
+ * add tests for every colorspace */
+
+Suite *
+videotestsrc_suite (void)
+{
+  Suite *s = suite_create ("videotestsrc");
+  TCase *tc_chain = tcase_create ("general");
+
+  suite_add_tcase (s, tc_chain);
+  tcase_add_test (tc_chain, test_all_patterns);
+
+  return s;
+}
+
+int
+main (int argc, char **argv)
+{
+  int nf;
+
+  Suite *s = videotestsrc_suite ();
+  SRunner *sr = srunner_create (s);
+
+  gst_check_init (&argc, &argv);
+
+  srunner_run_all (sr, CK_NORMAL);
+  nf = srunner_ntests_failed (sr);
+  srunner_free (sr);
+
+  return nf;
+}