summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2012-09-12 00:16:31 +0100
committerTim-Philipp Müller <tim@centricular.net>2012-09-12 00:16:31 +0100
commit1d586d3bdebb547d4485371ee223a308ec1c5fd8 (patch)
tree7471c64066ff432a41deb9d9946a53ea8484b428 /tests
parentf12ef67f56e0963dee2092666d50635a31610f5b (diff)
downloadgst-plugins-good-1d586d3bdebb547d4485371ee223a308ec1c5fd8.tar.gz
gst-plugins-good-1d586d3bdebb547d4485371ee223a308ec1c5fd8.tar.xz
tests: fix most of the rganalysis unit tests
Before the element would post messages on the bus itself, now the sinks do that based on the tag events they receive. But since we don't have proper sink elements in these unit tests, but just dangling pads, we have to post the tag messages the test checks for ourselves. Down from 52/55 failing to 7/52 failing.
Diffstat (limited to 'tests')
-rw-r--r--tests/check/elements/rganalysis.c31
1 files changed, 28 insertions, 3 deletions
diff --git a/tests/check/elements/rganalysis.c b/tests/check/elements/rganalysis.c
index aaebd6d20..cdcb69571 100644
--- a/tests/check/elements/rganalysis.c
+++ b/tests/check/elements/rganalysis.c
@@ -66,6 +66,7 @@
* sink pads we create; otherwise we always have to do get_pad, get_peer, and
* then remove references in every test function */
static GstPad *mysrcpad, *mysinkpad;
+static GstBus *mybus;
/* Mapping from supported sample rates to the correct result gain for the
* following test waveform: 20 * 512 samples with a quarter-full amplitude of
@@ -146,6 +147,27 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
GST_STATIC_CAPS (RG_ANALYSIS_CAPS_TEMPLATE_STRING)
);
+static gboolean
+mysink_event_func (GstPad * pad, GstObject * parent, GstEvent * event)
+{
+ GST_LOG_OBJECT (pad, "%s event: %" GST_PTR_FORMAT,
+ GST_EVENT_TYPE_NAME (event), event);
+
+ /* a sink would post tag events as messages, so do the same here,
+ * esp. since we're polling on the bus waiting for TAG messages.. */
+ if (GST_EVENT_TYPE (event) == GST_EVENT_TAG) {
+ GstTagList *taglist;
+
+ gst_event_parse_tag (event, &taglist);
+
+ gst_bus_post (mybus, gst_message_new_tag (GST_OBJECT (mysinkpad),
+ gst_tag_list_copy (taglist)));
+ }
+
+ gst_event_unref (event);
+ return TRUE;
+}
+
static GstElement *
setup_rganalysis (void)
{
@@ -156,13 +178,14 @@ setup_rganalysis (void)
analysis = gst_check_setup_element ("rganalysis");
mysrcpad = gst_check_setup_src_pad (analysis, &srctemplate);
mysinkpad = gst_check_setup_sink_pad (analysis, &sinktemplate);
+ gst_pad_set_event_function (mysinkpad, mysink_event_func);
gst_pad_set_active (mysrcpad, TRUE);
gst_pad_set_active (mysinkpad, TRUE);
bus = gst_bus_new ();
gst_element_set_bus (analysis, bus);
- /* gst_element_set_bus does not steal a reference. */
- gst_object_unref (bus);
+
+ mybus = bus; /* keep ref */
return analysis;
}
@@ -176,6 +199,9 @@ cleanup_rganalysis (GstElement * element)
g_list_free (buffers);
buffers = NULL;
+ gst_object_unref (mybus);
+ mybus = NULL;
+
/* The bus owns references to the element: */
gst_element_set_bus (element, NULL);
@@ -1236,7 +1262,6 @@ GST_START_TEST (test_forced)
poll_eos (element);
/* Now back to a track without tags. */
-
send_flush_events (element);
send_segment_event (element);
for (i = 20; i--;)