mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
testsuite/schedulers/: Added testcase for bug 147894
Original commit message from CVS: * testsuite/schedulers/147894.c: (queue_empty), (queue_filled), (handoff_identity), (main): * testsuite/schedulers/Makefile.am: Added testcase for bug 147894
This commit is contained in:
parent
6f82a0ea1a
commit
282255877d
5 changed files with 295 additions and 4 deletions
|
@ -1,3 +1,10 @@
|
|||
2004-07-19 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* testsuite/schedulers/147894.c: (queue_empty), (queue_filled),
|
||||
(handoff_identity), (main):
|
||||
* testsuite/schedulers/Makefile.am:
|
||||
Added testcase for bug 147894
|
||||
|
||||
2004-07-16 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* testsuite/schedulers/142183-2.c: (handoff_identity), (main):
|
||||
|
|
142
tests/old/testsuite/schedulers/147894.c
Normal file
142
tests/old/testsuite/schedulers/147894.c
Normal file
|
@ -0,0 +1,142 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) 2004 Wim Taymans <wim@fluendo.com>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU 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
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this library; if not, write to the Free
|
||||
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
#include <gst/gst.h>
|
||||
|
||||
static gboolean empty;
|
||||
static gboolean bug;
|
||||
static gboolean handoff;
|
||||
static GstElement *pipeline2;
|
||||
|
||||
static void
|
||||
queue_empty (GstElement * element)
|
||||
{
|
||||
g_print ("queue empty\n");
|
||||
if (!handoff)
|
||||
bug = TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
queue_filled (GstElement * element)
|
||||
{
|
||||
g_print ("queue filled\n");
|
||||
empty = FALSE;
|
||||
|
||||
/* read from the other end */
|
||||
handoff = FALSE;
|
||||
bug = FALSE;
|
||||
|
||||
alarm (5);
|
||||
|
||||
g_print ("emptying queue with 5 second timeout...\n");
|
||||
while (!bug && !handoff) {
|
||||
gst_bin_iterate (GST_BIN (pipeline2));
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
handoff_identity (GstElement * element)
|
||||
{
|
||||
g_print ("identity handoff\n");
|
||||
handoff = TRUE;
|
||||
}
|
||||
|
||||
gint
|
||||
main (gint argc, gchar ** argv)
|
||||
{
|
||||
GstElement *pipeline, *src, *sink, *queue, *id;
|
||||
|
||||
gst_init (&argc, &argv);
|
||||
|
||||
g_print ("setting up...\n");
|
||||
/* setup pipeline */
|
||||
pipeline = gst_element_factory_make ("pipeline", NULL);
|
||||
g_assert (pipeline);
|
||||
src = gst_element_factory_make ("fakesrc", NULL);
|
||||
g_assert (src);
|
||||
queue = gst_element_factory_make ("queue", NULL);
|
||||
g_assert (queue);
|
||||
g_signal_connect (G_OBJECT (queue), "overrun", (GCallback) queue_filled,
|
||||
NULL);
|
||||
g_signal_connect (G_OBJECT (queue), "underrun", (GCallback) queue_empty,
|
||||
NULL);
|
||||
gst_bin_add_many (GST_BIN (pipeline), src, queue, NULL);
|
||||
|
||||
gst_element_link_pads (src, "src", queue, "sink");
|
||||
|
||||
/* second pipeline for sinks */
|
||||
pipeline2 = gst_element_factory_make ("pipeline", NULL);
|
||||
g_assert (pipeline2);
|
||||
id = gst_element_factory_make ("identity", NULL);
|
||||
g_assert (id);
|
||||
g_signal_connect (G_OBJECT (id), "handoff", (GCallback) handoff_identity,
|
||||
NULL);
|
||||
|
||||
sink = gst_element_factory_make ("fakesink", NULL);
|
||||
g_assert (sink);
|
||||
gst_bin_add_many (GST_BIN (pipeline2), id, sink, NULL);
|
||||
|
||||
gst_element_link_pads (queue, "src", id, "sink");
|
||||
gst_element_link_pads (id, "src", sink, "sink");
|
||||
|
||||
if (gst_element_set_state (pipeline, GST_STATE_PLAYING) != GST_STATE_SUCCESS)
|
||||
g_assert_not_reached ();
|
||||
|
||||
if (gst_element_set_state (pipeline2, GST_STATE_PLAYING) != GST_STATE_SUCCESS)
|
||||
g_assert_not_reached ();
|
||||
|
||||
g_print ("running...\n");
|
||||
/* fill queue */
|
||||
empty = TRUE;
|
||||
while (empty) {
|
||||
gst_bin_iterate (GST_BIN (pipeline));
|
||||
}
|
||||
g_assert (!bug);
|
||||
|
||||
if (gst_element_set_state (pipeline2, GST_STATE_READY) != GST_STATE_SUCCESS)
|
||||
g_assert_not_reached ();
|
||||
|
||||
g_print ("relinking...\n");
|
||||
/* now unlink and link id and sink */
|
||||
gst_element_unlink_pads (id, "src", sink, "sink");
|
||||
gst_element_link_pads (id, "src", sink, "sink");
|
||||
|
||||
if (gst_element_set_state (pipeline2, GST_STATE_PLAYING) != GST_STATE_SUCCESS)
|
||||
g_assert_not_reached ();
|
||||
|
||||
g_print ("running again...\n");
|
||||
/* fill queue */
|
||||
empty = TRUE;
|
||||
while (empty) {
|
||||
gst_bin_iterate (GST_BIN (pipeline));
|
||||
}
|
||||
g_assert (!bug);
|
||||
|
||||
/* trigger the bug */
|
||||
|
||||
|
||||
g_print ("cleaning up...\n");
|
||||
gst_object_unref (GST_OBJECT (pipeline));
|
||||
gst_object_unref (GST_OBJECT (id));
|
||||
src = id = sink = pipeline = NULL;
|
||||
|
||||
g_print ("done.\n");
|
||||
return 0;
|
||||
}
|
|
@ -4,12 +4,12 @@ tests_pass = \
|
|||
unlink_src unlink_sink \
|
||||
relink_src relink_sink \
|
||||
unref_src unref_sink \
|
||||
143777 143777-2 147713
|
||||
143777 143777-2 147713
|
||||
|
||||
# don't enable this one unless it actually works.
|
||||
# useless_iteration
|
||||
|
||||
tests_fail = 142183 142183-2
|
||||
tests_fail = 142183 142183-2 147894
|
||||
tests_ignore =
|
||||
|
||||
unlink_src_SOURCES = unlink.c
|
||||
|
|
142
testsuite/schedulers/147894.c
Normal file
142
testsuite/schedulers/147894.c
Normal file
|
@ -0,0 +1,142 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) 2004 Wim Taymans <wim@fluendo.com>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU 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
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public
|
||||
* License along with this library; if not, write to the Free
|
||||
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
#include <gst/gst.h>
|
||||
|
||||
static gboolean empty;
|
||||
static gboolean bug;
|
||||
static gboolean handoff;
|
||||
static GstElement *pipeline2;
|
||||
|
||||
static void
|
||||
queue_empty (GstElement * element)
|
||||
{
|
||||
g_print ("queue empty\n");
|
||||
if (!handoff)
|
||||
bug = TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
queue_filled (GstElement * element)
|
||||
{
|
||||
g_print ("queue filled\n");
|
||||
empty = FALSE;
|
||||
|
||||
/* read from the other end */
|
||||
handoff = FALSE;
|
||||
bug = FALSE;
|
||||
|
||||
alarm (5);
|
||||
|
||||
g_print ("emptying queue with 5 second timeout...\n");
|
||||
while (!bug && !handoff) {
|
||||
gst_bin_iterate (GST_BIN (pipeline2));
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
handoff_identity (GstElement * element)
|
||||
{
|
||||
g_print ("identity handoff\n");
|
||||
handoff = TRUE;
|
||||
}
|
||||
|
||||
gint
|
||||
main (gint argc, gchar ** argv)
|
||||
{
|
||||
GstElement *pipeline, *src, *sink, *queue, *id;
|
||||
|
||||
gst_init (&argc, &argv);
|
||||
|
||||
g_print ("setting up...\n");
|
||||
/* setup pipeline */
|
||||
pipeline = gst_element_factory_make ("pipeline", NULL);
|
||||
g_assert (pipeline);
|
||||
src = gst_element_factory_make ("fakesrc", NULL);
|
||||
g_assert (src);
|
||||
queue = gst_element_factory_make ("queue", NULL);
|
||||
g_assert (queue);
|
||||
g_signal_connect (G_OBJECT (queue), "overrun", (GCallback) queue_filled,
|
||||
NULL);
|
||||
g_signal_connect (G_OBJECT (queue), "underrun", (GCallback) queue_empty,
|
||||
NULL);
|
||||
gst_bin_add_many (GST_BIN (pipeline), src, queue, NULL);
|
||||
|
||||
gst_element_link_pads (src, "src", queue, "sink");
|
||||
|
||||
/* second pipeline for sinks */
|
||||
pipeline2 = gst_element_factory_make ("pipeline", NULL);
|
||||
g_assert (pipeline2);
|
||||
id = gst_element_factory_make ("identity", NULL);
|
||||
g_assert (id);
|
||||
g_signal_connect (G_OBJECT (id), "handoff", (GCallback) handoff_identity,
|
||||
NULL);
|
||||
|
||||
sink = gst_element_factory_make ("fakesink", NULL);
|
||||
g_assert (sink);
|
||||
gst_bin_add_many (GST_BIN (pipeline2), id, sink, NULL);
|
||||
|
||||
gst_element_link_pads (queue, "src", id, "sink");
|
||||
gst_element_link_pads (id, "src", sink, "sink");
|
||||
|
||||
if (gst_element_set_state (pipeline, GST_STATE_PLAYING) != GST_STATE_SUCCESS)
|
||||
g_assert_not_reached ();
|
||||
|
||||
if (gst_element_set_state (pipeline2, GST_STATE_PLAYING) != GST_STATE_SUCCESS)
|
||||
g_assert_not_reached ();
|
||||
|
||||
g_print ("running...\n");
|
||||
/* fill queue */
|
||||
empty = TRUE;
|
||||
while (empty) {
|
||||
gst_bin_iterate (GST_BIN (pipeline));
|
||||
}
|
||||
g_assert (!bug);
|
||||
|
||||
if (gst_element_set_state (pipeline2, GST_STATE_READY) != GST_STATE_SUCCESS)
|
||||
g_assert_not_reached ();
|
||||
|
||||
g_print ("relinking...\n");
|
||||
/* now unlink and link id and sink */
|
||||
gst_element_unlink_pads (id, "src", sink, "sink");
|
||||
gst_element_link_pads (id, "src", sink, "sink");
|
||||
|
||||
if (gst_element_set_state (pipeline2, GST_STATE_PLAYING) != GST_STATE_SUCCESS)
|
||||
g_assert_not_reached ();
|
||||
|
||||
g_print ("running again...\n");
|
||||
/* fill queue */
|
||||
empty = TRUE;
|
||||
while (empty) {
|
||||
gst_bin_iterate (GST_BIN (pipeline));
|
||||
}
|
||||
g_assert (!bug);
|
||||
|
||||
/* trigger the bug */
|
||||
|
||||
|
||||
g_print ("cleaning up...\n");
|
||||
gst_object_unref (GST_OBJECT (pipeline));
|
||||
gst_object_unref (GST_OBJECT (id));
|
||||
src = id = sink = pipeline = NULL;
|
||||
|
||||
g_print ("done.\n");
|
||||
return 0;
|
||||
}
|
|
@ -4,12 +4,12 @@ tests_pass = \
|
|||
unlink_src unlink_sink \
|
||||
relink_src relink_sink \
|
||||
unref_src unref_sink \
|
||||
143777 143777-2 147713
|
||||
143777 143777-2 147713
|
||||
|
||||
# don't enable this one unless it actually works.
|
||||
# useless_iteration
|
||||
|
||||
tests_fail = 142183 142183-2
|
||||
tests_fail = 142183 142183-2 147894
|
||||
tests_ignore =
|
||||
|
||||
unlink_src_SOURCES = unlink.c
|
||||
|
|
Loading…
Reference in a new issue