2005-08-18 15:31:28 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2005 Jan Schmidt <thaytan@mad.scientist.com>
|
|
|
|
*
|
2005-08-20 12:43:18 +00:00
|
|
|
* gstevent.c: Unit test for event handling
|
2005-08-18 15:31:28 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2005-08-20 12:43:18 +00:00
|
|
|
#include <gst/check/gstcheck.h>
|
2005-08-18 15:31:28 +00:00
|
|
|
|
|
|
|
GST_START_TEST (create_custom_events)
|
|
|
|
{
|
|
|
|
GstEvent *event, *event2;
|
|
|
|
GstStructure *structure;
|
|
|
|
|
|
|
|
/* FLUSH_START */
|
|
|
|
{
|
|
|
|
event = gst_event_new_flush_start ();
|
|
|
|
fail_if (event == NULL);
|
|
|
|
fail_unless (GST_EVENT_TYPE (event) == GST_EVENT_FLUSH_START);
|
|
|
|
fail_unless (GST_EVENT_IS_UPSTREAM (event));
|
|
|
|
fail_unless (GST_EVENT_IS_DOWNSTREAM (event));
|
|
|
|
fail_if (GST_EVENT_IS_SERIALIZED (event));
|
|
|
|
gst_event_unref (event);
|
|
|
|
}
|
|
|
|
/* FLUSH_STOP */
|
|
|
|
{
|
|
|
|
event = gst_event_new_flush_stop ();
|
|
|
|
fail_if (event == NULL);
|
|
|
|
fail_unless (GST_EVENT_TYPE (event) == GST_EVENT_FLUSH_STOP);
|
|
|
|
fail_unless (GST_EVENT_IS_UPSTREAM (event));
|
|
|
|
fail_unless (GST_EVENT_IS_DOWNSTREAM (event));
|
2005-11-21 17:21:15 +00:00
|
|
|
fail_unless (GST_EVENT_IS_SERIALIZED (event));
|
2005-08-18 15:31:28 +00:00
|
|
|
gst_event_unref (event);
|
|
|
|
}
|
|
|
|
/* EOS */
|
|
|
|
{
|
|
|
|
event = gst_event_new_eos ();
|
|
|
|
fail_if (event == NULL);
|
|
|
|
fail_unless (GST_EVENT_TYPE (event) == GST_EVENT_EOS);
|
|
|
|
fail_if (GST_EVENT_IS_UPSTREAM (event));
|
|
|
|
fail_unless (GST_EVENT_IS_DOWNSTREAM (event));
|
|
|
|
fail_unless (GST_EVENT_IS_SERIALIZED (event));
|
|
|
|
gst_event_unref (event);
|
|
|
|
}
|
|
|
|
/* NEWSEGMENT */
|
|
|
|
{
|
|
|
|
gdouble rate;
|
|
|
|
GstFormat format;
|
|
|
|
gint64 start, end, base;
|
2005-10-11 16:28:49 +00:00
|
|
|
gboolean update;
|
2005-08-18 15:31:28 +00:00
|
|
|
|
2005-10-11 16:28:49 +00:00
|
|
|
event =
|
|
|
|
gst_event_new_newsegment (FALSE, 0.5, GST_FORMAT_TIME, 1, G_MAXINT64,
|
2005-08-18 15:31:28 +00:00
|
|
|
0xdeadbeef);
|
|
|
|
fail_if (event == NULL);
|
|
|
|
fail_unless (GST_EVENT_TYPE (event) == GST_EVENT_NEWSEGMENT);
|
|
|
|
fail_if (GST_EVENT_IS_UPSTREAM (event));
|
|
|
|
fail_unless (GST_EVENT_IS_DOWNSTREAM (event));
|
|
|
|
fail_unless (GST_EVENT_IS_SERIALIZED (event));
|
|
|
|
|
2005-10-11 16:28:49 +00:00
|
|
|
gst_event_parse_newsegment (event, &update, &rate, &format, &start, &end,
|
|
|
|
&base);
|
|
|
|
fail_unless (update == FALSE);
|
2005-08-18 15:31:28 +00:00
|
|
|
fail_unless (rate == 0.5);
|
|
|
|
fail_unless (format == GST_FORMAT_TIME);
|
|
|
|
fail_unless (start == 1);
|
|
|
|
fail_unless (end == G_MAXINT64);
|
|
|
|
fail_unless (base == 0xdeadbeef);
|
|
|
|
|
|
|
|
gst_event_unref (event);
|
|
|
|
}
|
|
|
|
/* TAGS */
|
|
|
|
{
|
|
|
|
GstTagList *taglist = gst_tag_list_new ();
|
|
|
|
GstTagList *tl2 = NULL;
|
|
|
|
|
|
|
|
event = gst_event_new_tag (taglist);
|
|
|
|
fail_if (taglist == NULL);
|
|
|
|
fail_if (event == NULL);
|
|
|
|
fail_unless (GST_EVENT_TYPE (event) == GST_EVENT_TAG);
|
|
|
|
fail_if (GST_EVENT_IS_UPSTREAM (event));
|
|
|
|
fail_unless (GST_EVENT_IS_DOWNSTREAM (event));
|
|
|
|
fail_unless (GST_EVENT_IS_SERIALIZED (event));
|
|
|
|
|
|
|
|
gst_event_parse_tag (event, &tl2);
|
|
|
|
fail_unless (taglist == tl2);
|
|
|
|
gst_event_unref (event);
|
|
|
|
}
|
|
|
|
|
2005-11-21 13:03:36 +00:00
|
|
|
/* FIXME: Add tests for QOS when it is implemented. */
|
2005-08-18 15:31:28 +00:00
|
|
|
|
|
|
|
/* SEEK */
|
|
|
|
{
|
|
|
|
gdouble rate;
|
|
|
|
GstFormat format;
|
|
|
|
GstSeekFlags flags;
|
|
|
|
GstSeekType cur_type, stop_type;
|
|
|
|
gint64 cur, stop;
|
|
|
|
|
|
|
|
event = gst_event_new_seek (0.5, GST_FORMAT_BYTES,
|
|
|
|
GST_SEEK_FLAG_FLUSH | GST_SEEK_FLAG_ACCURATE,
|
|
|
|
GST_SEEK_TYPE_SET, 1, GST_SEEK_TYPE_NONE, 0xdeadbeef);
|
|
|
|
|
|
|
|
fail_if (event == NULL);
|
|
|
|
fail_unless (GST_EVENT_TYPE (event) == GST_EVENT_SEEK);
|
|
|
|
fail_unless (GST_EVENT_IS_UPSTREAM (event));
|
|
|
|
fail_if (GST_EVENT_IS_DOWNSTREAM (event));
|
|
|
|
fail_if (GST_EVENT_IS_SERIALIZED (event));
|
|
|
|
|
|
|
|
gst_event_parse_seek (event, &rate, &format, &flags, &cur_type, &cur,
|
|
|
|
&stop_type, &stop);
|
|
|
|
fail_unless (rate == 0.5);
|
|
|
|
fail_unless (format == GST_FORMAT_BYTES);
|
|
|
|
fail_unless (flags == (GST_SEEK_FLAG_FLUSH | GST_SEEK_FLAG_ACCURATE));
|
|
|
|
fail_unless (cur_type == GST_SEEK_TYPE_SET);
|
|
|
|
fail_unless (cur == 1);
|
|
|
|
fail_unless (stop_type == GST_SEEK_TYPE_NONE);
|
|
|
|
fail_unless (stop == 0xdeadbeef);
|
|
|
|
|
|
|
|
gst_event_unref (event);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NAVIGATION */
|
|
|
|
{
|
|
|
|
structure = gst_structure_new ("application/x-gst-navigation", "event",
|
|
|
|
G_TYPE_STRING, "key-press", "key", G_TYPE_STRING, "mon", NULL);
|
|
|
|
fail_if (structure == NULL);
|
|
|
|
event = gst_event_new_navigation (structure);
|
|
|
|
fail_if (event == NULL);
|
|
|
|
fail_unless (GST_EVENT_TYPE (event) == GST_EVENT_NAVIGATION);
|
|
|
|
fail_unless (GST_EVENT_IS_UPSTREAM (event));
|
|
|
|
fail_if (GST_EVENT_IS_DOWNSTREAM (event));
|
|
|
|
fail_if (GST_EVENT_IS_SERIALIZED (event));
|
|
|
|
|
|
|
|
fail_unless (gst_event_get_structure (event) == structure);
|
|
|
|
gst_event_unref (event);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Custom event types */
|
|
|
|
{
|
|
|
|
structure = gst_structure_empty_new ("application/x-custom");
|
|
|
|
fail_if (structure == NULL);
|
2005-11-21 11:06:42 +00:00
|
|
|
event = gst_event_new_custom (GST_EVENT_CUSTOM_UPSTREAM, structure);
|
2005-08-18 15:31:28 +00:00
|
|
|
fail_if (event == NULL);
|
2005-11-21 11:06:42 +00:00
|
|
|
fail_unless (GST_EVENT_TYPE (event) == GST_EVENT_CUSTOM_UPSTREAM);
|
2005-08-18 15:31:28 +00:00
|
|
|
fail_unless (GST_EVENT_IS_UPSTREAM (event));
|
|
|
|
fail_if (GST_EVENT_IS_DOWNSTREAM (event));
|
|
|
|
fail_if (GST_EVENT_IS_SERIALIZED (event));
|
|
|
|
fail_unless (gst_event_get_structure (event) == structure);
|
|
|
|
gst_event_unref (event);
|
|
|
|
|
|
|
|
/* Decided not to test the other custom enum types, as they
|
|
|
|
* only differ by the value of the enum passed to gst_event_new_custom
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Event copying */
|
|
|
|
{
|
|
|
|
structure = gst_structure_empty_new ("application/x-custom");
|
|
|
|
fail_if (structure == NULL);
|
|
|
|
event = gst_event_new_custom (GST_EVENT_CUSTOM_BOTH, structure);
|
|
|
|
|
|
|
|
fail_if (event == NULL);
|
|
|
|
event2 = gst_event_copy (event);
|
|
|
|
fail_if (event2 == NULL);
|
|
|
|
fail_unless (GST_EVENT_TYPE (event) == GST_EVENT_TYPE (event2));
|
|
|
|
|
|
|
|
/* The structure should have been duplicated */
|
|
|
|
fail_if (gst_event_get_structure (event) ==
|
|
|
|
gst_event_get_structure (event2));
|
|
|
|
gst_event_unref (event);
|
|
|
|
gst_event_unref (event2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-20 12:43:18 +00:00
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GTimeVal sent_event_time;
|
2005-08-18 15:31:28 +00:00
|
|
|
GstEvent *got_event_before_q, *got_event_after_q;
|
|
|
|
GTimeVal got_event_time;
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
event_probe (GstPad * pad, GstMiniObject ** data, gpointer user_data)
|
|
|
|
{
|
2005-08-18 16:42:49 +00:00
|
|
|
gboolean before_q = (gboolean) GPOINTER_TO_INT (user_data);
|
2005-08-18 15:31:28 +00:00
|
|
|
|
|
|
|
fail_unless (GST_IS_EVENT (data));
|
|
|
|
|
|
|
|
if (before_q) {
|
|
|
|
switch (GST_EVENT_TYPE (GST_EVENT (data))) {
|
2005-11-21 11:06:42 +00:00
|
|
|
case GST_EVENT_CUSTOM_UPSTREAM:
|
2005-08-18 15:31:28 +00:00
|
|
|
case GST_EVENT_CUSTOM_BOTH:
|
|
|
|
case GST_EVENT_CUSTOM_BOTH_OOB:
|
2005-08-21 10:54:47 +00:00
|
|
|
if (got_event_before_q != NULL)
|
|
|
|
break;
|
2005-08-18 15:31:28 +00:00
|
|
|
gst_event_ref (data);
|
|
|
|
g_get_current_time (&got_event_time);
|
|
|
|
got_event_before_q = GST_EVENT (data);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (GST_EVENT_TYPE (GST_EVENT (data))) {
|
2005-11-21 11:06:42 +00:00
|
|
|
case GST_EVENT_CUSTOM_DOWNSTREAM:
|
|
|
|
case GST_EVENT_CUSTOM_DOWNSTREAM_OOB:
|
2005-08-18 15:31:28 +00:00
|
|
|
case GST_EVENT_CUSTOM_BOTH:
|
|
|
|
case GST_EVENT_CUSTOM_BOTH_OOB:
|
2005-08-21 10:54:47 +00:00
|
|
|
if (got_event_after_q != NULL)
|
|
|
|
break;
|
2005-08-18 15:31:28 +00:00
|
|
|
gst_event_ref (data);
|
|
|
|
g_get_current_time (&got_event_time);
|
|
|
|
got_event_after_q = GST_EVENT (data);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_event
|
2005-08-21 10:54:47 +00:00
|
|
|
(GstBin * pipeline, GstEventType type, GstPad * pad,
|
2005-11-22 10:24:31 +00:00
|
|
|
gboolean expect_before_q, GstPad * fake_srcpad)
|
2005-08-18 15:31:28 +00:00
|
|
|
{
|
|
|
|
GstEvent *event;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
got_event_before_q = got_event_after_q = NULL;
|
|
|
|
|
2005-08-21 10:54:47 +00:00
|
|
|
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PLAYING);
|
Use GstClockTime in _get_state() instead of GTimeVal.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstelement.c: (GST_START_TEST):
* check/gst/gstevent.c: (GST_START_TEST), (test_event):
* check/gst/gstghostpad.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/simple_launch_lines.c: (run_pipeline):
* check/states/sinks.c: (GST_START_TEST):
* gst/elements/gsttypefindelement.c: (stop_typefinding):
* gst/gstbin.c: (gst_bin_provide_clock_func), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_set_state),
(gst_element_change_state), (gst_element_change_state_func):
* gst/gstelement.h:
* gst/gstpipeline.c: (gst_pipeline_class_init), (do_pipeline_seek),
(gst_pipeline_provide_clock_func):
* gst/gstutils.c: (gst_element_link_pads_filtered):
* tools/gst-launch.c: (main):
* tools/gst-typefind.c: (main):
Use GstClockTime in _get_state() instead of GTimeVal.
Remove old code in gstutils.c
2005-10-12 12:18:48 +00:00
|
|
|
gst_element_get_state (GST_ELEMENT (pipeline), NULL, NULL,
|
|
|
|
GST_CLOCK_TIME_NONE);
|
2005-08-21 10:54:47 +00:00
|
|
|
|
2005-08-18 15:31:28 +00:00
|
|
|
event = gst_event_new_custom (type,
|
|
|
|
gst_structure_empty_new ("application/x-custom"));
|
|
|
|
g_get_current_time (&sent_event_time);
|
|
|
|
got_event_time.tv_sec = 0;
|
|
|
|
got_event_time.tv_usec = 0;
|
|
|
|
|
2005-11-22 10:24:31 +00:00
|
|
|
fail_unless (gst_pad_set_blocked (fake_srcpad, TRUE) == TRUE);
|
2005-08-18 15:31:28 +00:00
|
|
|
gst_pad_push_event (pad, event);
|
2005-11-22 10:24:31 +00:00
|
|
|
fail_unless (gst_pad_set_blocked (fake_srcpad, FALSE) == TRUE);
|
2005-08-18 15:31:28 +00:00
|
|
|
|
|
|
|
/* Wait up to 5 seconds for the event to appear */
|
|
|
|
if (expect_before_q) {
|
2005-08-18 16:00:34 +00:00
|
|
|
for (i = 0; i < 500; i++) {
|
|
|
|
g_usleep (G_USEC_PER_SEC / 100);
|
2005-08-18 15:31:28 +00:00
|
|
|
if (got_event_before_q != NULL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
fail_if (got_event_before_q == NULL);
|
|
|
|
fail_unless (GST_EVENT_TYPE (got_event_before_q) == type);
|
|
|
|
} else {
|
2005-08-18 16:00:34 +00:00
|
|
|
for (i = 0; i < 500; i++) {
|
|
|
|
g_usleep (G_USEC_PER_SEC / 100);
|
2005-08-18 15:31:28 +00:00
|
|
|
if (got_event_after_q != NULL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
fail_if (got_event_after_q == NULL);
|
|
|
|
fail_unless (GST_EVENT_TYPE (got_event_after_q) == type);
|
|
|
|
}
|
2005-08-21 10:54:47 +00:00
|
|
|
|
|
|
|
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PAUSED);
|
Use GstClockTime in _get_state() instead of GTimeVal.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstelement.c: (GST_START_TEST):
* check/gst/gstevent.c: (GST_START_TEST), (test_event):
* check/gst/gstghostpad.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/simple_launch_lines.c: (run_pipeline):
* check/states/sinks.c: (GST_START_TEST):
* gst/elements/gsttypefindelement.c: (stop_typefinding):
* gst/gstbin.c: (gst_bin_provide_clock_func), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_set_state),
(gst_element_change_state), (gst_element_change_state_func):
* gst/gstelement.h:
* gst/gstpipeline.c: (gst_pipeline_class_init), (do_pipeline_seek),
(gst_pipeline_provide_clock_func):
* gst/gstutils.c: (gst_element_link_pads_filtered):
* tools/gst-launch.c: (main):
* tools/gst-typefind.c: (main):
Use GstClockTime in _get_state() instead of GTimeVal.
Remove old code in gstutils.c
2005-10-12 12:18:48 +00:00
|
|
|
gst_element_get_state (GST_ELEMENT (pipeline), NULL, NULL,
|
|
|
|
GST_CLOCK_TIME_NONE);
|
2005-08-21 10:54:47 +00:00
|
|
|
|
|
|
|
if (got_event_before_q)
|
|
|
|
gst_event_unref (got_event_before_q);
|
|
|
|
if (got_event_after_q)
|
|
|
|
gst_event_unref (got_event_after_q);
|
|
|
|
|
|
|
|
got_event_before_q = got_event_after_q = NULL;
|
|
|
|
}
|
2005-08-18 15:31:28 +00:00
|
|
|
|
|
|
|
static gint64
|
|
|
|
timediff (GTimeVal * end, GTimeVal * start)
|
|
|
|
{
|
|
|
|
return (end->tv_sec - start->tv_sec) * G_USEC_PER_SEC +
|
|
|
|
(end->tv_usec - start->tv_usec);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (send_custom_events)
|
|
|
|
{
|
|
|
|
/* Run some tests on custom events. Checking for serialisation and whatnot.
|
|
|
|
* pipeline is fakesrc ! queue ! fakesink */
|
|
|
|
GstBin *pipeline;
|
|
|
|
GstElement *fakesrc, *fakesink, *queue;
|
|
|
|
GstPad *srcpad, *sinkpad;
|
|
|
|
|
|
|
|
fail_if ((pipeline = (GstBin *) gst_pipeline_new ("testpipe")) == NULL);
|
|
|
|
fail_if ((fakesrc = gst_element_factory_make ("fakesrc", NULL)) == NULL);
|
|
|
|
fail_if ((fakesink = gst_element_factory_make ("fakesink", NULL)) == NULL);
|
|
|
|
fail_if ((queue = gst_element_factory_make ("queue", NULL)) == NULL);
|
|
|
|
|
|
|
|
gst_bin_add_many (pipeline, fakesrc, queue, fakesink, NULL);
|
|
|
|
fail_unless (gst_element_link_many (fakesrc, queue, fakesink, NULL));
|
|
|
|
|
2005-09-20 15:45:42 +00:00
|
|
|
g_object_set (G_OBJECT (fakesink), "sync", FALSE, NULL);
|
|
|
|
|
2005-08-18 16:00:34 +00:00
|
|
|
/* Send 100 buffers per sec */
|
|
|
|
g_object_set (G_OBJECT (fakesrc), "silent", TRUE, "datarate", 100,
|
2005-08-18 15:31:28 +00:00
|
|
|
"sizemax", 1, "sizetype", 2, NULL);
|
|
|
|
g_object_set (G_OBJECT (queue), "max-size-buffers", 0, "max-size-time",
|
2005-08-18 16:00:34 +00:00
|
|
|
(guint64) GST_SECOND, "max-size-bytes", 0, NULL);
|
2005-08-18 15:31:28 +00:00
|
|
|
g_object_set (G_OBJECT (fakesink), "silent", TRUE, "sync", TRUE, NULL);
|
|
|
|
|
|
|
|
fail_if ((srcpad = gst_element_get_pad (fakesrc, "src")) == NULL);
|
|
|
|
gst_pad_add_event_probe (srcpad, (GCallback) event_probe,
|
|
|
|
GINT_TO_POINTER (TRUE));
|
|
|
|
|
|
|
|
fail_if ((sinkpad = gst_element_get_pad (fakesink, "sink")) == NULL);
|
|
|
|
gst_pad_add_event_probe (sinkpad, (GCallback) event_probe,
|
|
|
|
GINT_TO_POINTER (FALSE));
|
|
|
|
|
|
|
|
/* Upstream events */
|
2005-11-22 10:24:31 +00:00
|
|
|
test_event (pipeline, GST_EVENT_CUSTOM_UPSTREAM, sinkpad, TRUE, srcpad);
|
2005-08-18 16:00:34 +00:00
|
|
|
fail_unless (timediff (&got_event_time,
|
|
|
|
&sent_event_time) < G_USEC_PER_SEC / 2,
|
2005-08-21 10:54:47 +00:00
|
|
|
"GST_EVENT_CUSTOM_UP took to long to reach source: %"
|
|
|
|
G_GINT64_FORMAT " us", timediff (&got_event_time, &sent_event_time));
|
2005-08-18 15:31:28 +00:00
|
|
|
|
2005-11-22 10:24:31 +00:00
|
|
|
test_event (pipeline, GST_EVENT_CUSTOM_BOTH, sinkpad, TRUE, srcpad);
|
2005-08-18 16:00:34 +00:00
|
|
|
fail_unless (timediff (&got_event_time,
|
|
|
|
&sent_event_time) < G_USEC_PER_SEC / 2,
|
2005-08-21 10:54:47 +00:00
|
|
|
"GST_EVENT_CUSTOM_BOTH took to long to reach source: %"
|
|
|
|
G_GINT64_FORMAT " us", timediff (&got_event_time, &sent_event_time));
|
2005-08-18 15:31:28 +00:00
|
|
|
|
2005-11-22 10:24:31 +00:00
|
|
|
test_event (pipeline, GST_EVENT_CUSTOM_BOTH_OOB, sinkpad, TRUE, srcpad);
|
2005-08-18 16:00:34 +00:00
|
|
|
fail_unless (timediff (&got_event_time,
|
|
|
|
&sent_event_time) < G_USEC_PER_SEC / 2,
|
2005-08-21 10:54:47 +00:00
|
|
|
"GST_EVENT_CUSTOM_BOTH_OOB took to long to reach source: %"
|
|
|
|
G_GINT64_FORMAT " us", timediff (&got_event_time, &sent_event_time));
|
2005-08-18 15:31:28 +00:00
|
|
|
|
|
|
|
/* Out of band downstream events */
|
2005-11-22 10:24:31 +00:00
|
|
|
test_event (pipeline, GST_EVENT_CUSTOM_DOWNSTREAM_OOB, srcpad, FALSE, srcpad);
|
2005-08-18 16:00:34 +00:00
|
|
|
fail_unless (timediff (&got_event_time,
|
|
|
|
&sent_event_time) < G_USEC_PER_SEC / 2,
|
2005-08-21 10:54:47 +00:00
|
|
|
"GST_EVENT_CUSTOM_DS_OOB took to long to reach source: %"
|
|
|
|
G_GINT64_FORMAT " us", timediff (&got_event_time, &sent_event_time));
|
2005-08-18 15:31:28 +00:00
|
|
|
|
2005-11-22 10:24:31 +00:00
|
|
|
test_event (pipeline, GST_EVENT_CUSTOM_BOTH_OOB, srcpad, FALSE, srcpad);
|
2005-08-18 16:00:34 +00:00
|
|
|
fail_unless (timediff (&got_event_time,
|
|
|
|
&sent_event_time) < G_USEC_PER_SEC / 2,
|
2005-08-21 10:54:47 +00:00
|
|
|
"GST_EVENT_CUSTOM_BOTH_OOB took to long to reach source: %"
|
|
|
|
G_GINT64_FORMAT " us", timediff (&got_event_time, &sent_event_time));
|
2005-08-18 15:31:28 +00:00
|
|
|
|
2005-08-20 12:43:18 +00:00
|
|
|
/* In-band downstream events are expected to take at least 1 second
|
2005-08-18 15:31:28 +00:00
|
|
|
* to traverse the the queue */
|
2005-11-22 10:24:31 +00:00
|
|
|
test_event (pipeline, GST_EVENT_CUSTOM_DOWNSTREAM, srcpad, FALSE, srcpad);
|
2005-08-18 16:00:34 +00:00
|
|
|
fail_unless (timediff (&got_event_time,
|
|
|
|
&sent_event_time) >= G_USEC_PER_SEC / 2,
|
2005-08-21 10:54:47 +00:00
|
|
|
"GST_EVENT_CUSTOM_DS arrived too quickly for an in-band event: %"
|
|
|
|
G_GINT64_FORMAT " us", timediff (&got_event_time, &sent_event_time));
|
2005-08-18 15:31:28 +00:00
|
|
|
|
2005-11-22 10:24:31 +00:00
|
|
|
test_event (pipeline, GST_EVENT_CUSTOM_BOTH, srcpad, FALSE, srcpad);
|
2005-08-18 16:00:34 +00:00
|
|
|
fail_unless (timediff (&got_event_time,
|
|
|
|
&sent_event_time) >= G_USEC_PER_SEC / 2,
|
2005-08-21 10:54:47 +00:00
|
|
|
"GST_EVENT_CUSTOM_BOTH arrived too quickly for an in-band event: %"
|
|
|
|
G_GINT64_FORMAT " us", timediff (&got_event_time, &sent_event_time));
|
2005-08-18 15:31:28 +00:00
|
|
|
|
|
|
|
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL);
|
Use GstClockTime in _get_state() instead of GTimeVal.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstelement.c: (GST_START_TEST):
* check/gst/gstevent.c: (GST_START_TEST), (test_event):
* check/gst/gstghostpad.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/simple_launch_lines.c: (run_pipeline):
* check/states/sinks.c: (GST_START_TEST):
* gst/elements/gsttypefindelement.c: (stop_typefinding):
* gst/gstbin.c: (gst_bin_provide_clock_func), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_set_state),
(gst_element_change_state), (gst_element_change_state_func):
* gst/gstelement.h:
* gst/gstpipeline.c: (gst_pipeline_class_init), (do_pipeline_seek),
(gst_pipeline_provide_clock_func):
* gst/gstutils.c: (gst_element_link_pads_filtered):
* tools/gst-launch.c: (main):
* tools/gst-typefind.c: (main):
Use GstClockTime in _get_state() instead of GTimeVal.
Remove old code in gstutils.c
2005-10-12 12:18:48 +00:00
|
|
|
gst_element_get_state (GST_ELEMENT (pipeline), NULL, NULL,
|
|
|
|
GST_CLOCK_TIME_NONE);
|
2005-08-18 15:31:28 +00:00
|
|
|
|
|
|
|
gst_object_unref (pipeline);
|
|
|
|
}
|
|
|
|
|
2005-08-20 12:43:18 +00:00
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
Suite *
|
|
|
|
gstevents_suite (void)
|
2005-08-18 15:31:28 +00:00
|
|
|
{
|
|
|
|
Suite *s = suite_create ("GstEvent");
|
|
|
|
TCase *tc_chain = tcase_create ("customevents");
|
|
|
|
|
|
|
|
tcase_set_timeout (tc_chain, 20);
|
|
|
|
|
|
|
|
suite_add_tcase (s, tc_chain);
|
|
|
|
tcase_add_test (tc_chain, create_custom_events);
|
|
|
|
tcase_add_test (tc_chain, send_custom_events);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
int nf;
|
|
|
|
|
|
|
|
Suite *s = gstevents_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;
|
|
|
|
}
|