summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2007-10-27 16:04:48 +0000
committerTim-Philipp Müller <tim@centricular.net>2007-10-27 16:04:48 +0000
commit5a046c7e0395cec55a540458b9524024486507a8 (patch)
tree55d927b190e4b5ea1f8316e6664855a13279d1fc /tests
parent94c519cead2e9caf334f7f0f465a4f99b046921c (diff)
gst/interleave/interleave.c: Let's not call every request pad we create "sink%d", that'll create problems if there's ...
Original commit message from CVS: * gst/interleave/interleave.c: (gst_interleave_request_new_pad): Let's not call every request pad we create "sink%d", that'll create problems if there's to be more than one pad. Fixes #490682. * tests/check/Makefile.am: * tests/check/elements/.cvsignore: * tests/check/elements/interleave.c: Add unit test for the above.
Diffstat (limited to 'tests')
-rw-r--r--tests/check/elements/interleave.c79
1 files changed, 79 insertions, 0 deletions
diff --git a/tests/check/elements/interleave.c b/tests/check/elements/interleave.c
new file mode 100644
index 00000000..6d9fdd0c
--- /dev/null
+++ b/tests/check/elements/interleave.c
@@ -0,0 +1,79 @@
+/* GStreamer unit tests for the interleave element
+ * Copyright (C) 2007 Tim-Philipp Müller <tim centricular net>
+ *
+ * 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.
+ */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <gst/check/gstcheck.h>
+
+GST_START_TEST (test_create_and_unref)
+{
+ GstElement *interleave;
+
+ interleave = gst_element_factory_make ("interleave", NULL);
+ fail_unless (interleave != NULL);
+
+ gst_element_set_state (interleave, GST_STATE_NULL);
+ gst_object_unref (interleave);
+}
+
+GST_END_TEST;
+
+GST_START_TEST (test_request_pads)
+{
+ GstElement *interleave;
+ GstPad *pad1, *pad2;
+
+ interleave = gst_element_factory_make ("interleave", NULL);
+ fail_unless (interleave != NULL);
+
+ pad1 = gst_element_get_request_pad (interleave, "sink%d");
+ fail_unless (pad1 != NULL);
+ fail_unless_equals_string (GST_OBJECT_NAME (pad1), "sink0");
+
+ pad2 = gst_element_get_request_pad (interleave, "sink%d");
+ fail_unless (pad2 != NULL);
+ fail_unless_equals_string (GST_OBJECT_NAME (pad2), "sink1");
+
+ gst_element_release_request_pad (interleave, pad2);
+ gst_object_unref (pad2);
+ gst_element_release_request_pad (interleave, pad1);
+ gst_object_unref (pad1);
+
+ gst_element_set_state (interleave, GST_STATE_NULL);
+ gst_object_unref (interleave);
+}
+
+GST_END_TEST;
+
+static Suite *
+interleave_suite (void)
+{
+ Suite *s = suite_create ("interleave");
+ TCase *tc_chain = tcase_create ("general");
+
+ suite_add_tcase (s, tc_chain);
+ tcase_add_test (tc_chain, test_create_and_unref);
+ tcase_add_test (tc_chain, test_request_pads);
+
+ return s;
+}
+
+GST_CHECK_MAIN (interleave);