summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-02-03 18:25:00 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-02-03 18:27:05 +0000
commit7551d102f8b87446729a55c3909ebbc15296c26e (patch)
tree0c8f06421758d77b96d9ff57752fa47485f7946b
parent7417ad6d5feb74696b030a179f390656ecaf7ac7 (diff)
tests: add unit test for lamemp3enc negotiation issue
https://bugzilla.gnome.org/show_bug.cgi?id=641151
-rw-r--r--tests/check/pipelines/lame.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/check/pipelines/lame.c b/tests/check/pipelines/lame.c
index ea7b52a0..943219b7 100644
--- a/tests/check/pipelines/lame.c
+++ b/tests/check/pipelines/lame.c
@@ -62,24 +62,66 @@ GST_START_TEST (test_format)
gst_object_unref (pad);
gst_object_unref (bin);
}
GST_END_TEST;
+GST_START_TEST (test_caps_proxy)
+{
+ GstElement *bin;
+ GstPad *pad;
+ gchar *pipe_str;
+ GstBuffer *buffer;
+ GError *error = NULL;
+
+ pipe_str = g_strdup_printf ("audiotestsrc num-buffers=1 "
+ "! audio/x-raw-int,rate=48000,channels=1 "
+ "! audioresample "
+ "! lamemp3enc ! audio/mpeg,rate=(int){22050,44100} ! fakesink");
+
+ bin = gst_parse_launch (pipe_str, &error);
+ fail_unless (bin != NULL, "Error parsing pipeline: %s",
+ error ? error->message : "(invalid error)");
+ g_free (pipe_str);
+
+ /* get the pad */
+ {
+ GstElement *sink = gst_bin_get_by_name (GST_BIN (bin), "fakesink0");
+
+ fail_unless (sink != NULL, "Could not get fakesink out of bin");
+ pad = gst_element_get_static_pad (sink, "sink");
+ fail_unless (pad != NULL, "Could not get pad out of fakesink");
+ gst_object_unref (sink);
+ }
+
+ gst_buffer_straw_start_pipeline (bin, pad);
+
+ buffer = gst_buffer_straw_get_buffer (bin, pad);
+
+ gst_buffer_straw_stop_pipeline (bin, pad);
+
+ gst_buffer_unref (buffer);
+ gst_object_unref (pad);
+ gst_object_unref (bin);
+}
+
+GST_END_TEST;
+
#endif /* #ifndef GST_DISABLE_PARSE */
Suite *
lame_suite (void)
{
Suite *s = suite_create ("lame");
TCase *tc_chain = tcase_create ("general");
suite_add_tcase (s, tc_chain);
#ifndef GST_DISABLE_PARSE
tcase_add_test (tc_chain, test_format);
+ tcase_add_test (tc_chain, test_caps_proxy);
#endif
return s;
}
int