check/gst/gstbin.c: Added checks for hierarchy consistency whan adding linked element...
[platform/upstream/gstreamer.git] / tests / check / gst / gstelement.c
1 /* GStreamer
2  * Copyright (C) 2005 Thomas Vander Stichele <thomas at apestaart dot org>
3  *
4  * gstelement.c: Unit test for GstElement
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #include "../gstcheck.h"
23
24 GST_START_TEST (test_add_remove_pad)
25 {
26   GstElement *e;
27   GstPad *p;
28
29   /* getting an existing element class is cheating, but easier */
30   e = gst_element_factory_make ("fakesrc", "source");
31
32   /* create a new floating pad with refcount 1 */
33   p = gst_pad_new ("source", GST_PAD_SRC);
34   ASSERT_OBJECT_REFCOUNT (p, "pad", 1);
35   /* ref it for ourselves */
36   gst_object_ref (p);
37   ASSERT_OBJECT_REFCOUNT (p, "pad", 2);
38   /* adding it sinks the pad -> not floating, same refcount */
39   gst_element_add_pad (e, p);
40   ASSERT_OBJECT_REFCOUNT (p, "pad", 2);
41
42   /* removing it reduces the refcount */
43   gst_element_remove_pad (e, p);
44   ASSERT_OBJECT_REFCOUNT (p, "pad", 1);
45
46   /* clean up our own reference */
47   gst_object_unref (p);
48 }
49
50 GST_END_TEST;
51
52 GST_START_TEST (test_add_pad_unref_element)
53 {
54   GstElement *e;
55   GstPad *p;
56
57   /* getting an existing element class is cheating, but easier */
58   e = gst_element_factory_make ("fakesrc", "source");
59
60   /* create a new floating pad with refcount 1 */
61   p = gst_pad_new ("source", GST_PAD_SRC);
62   ASSERT_OBJECT_REFCOUNT (p, "pad", 1);
63   /* ref it for ourselves */
64   gst_object_ref (p);
65   ASSERT_OBJECT_REFCOUNT (p, "pad", 2);
66   /* adding it sinks the pad -> not floating, same refcount */
67   gst_element_add_pad (e, p);
68   ASSERT_OBJECT_REFCOUNT (p, "pad", 2);
69
70   /* unreffing the element should clean it up */
71   gst_object_unref (GST_OBJECT (e));
72
73   ASSERT_OBJECT_REFCOUNT (p, "pad", 1);
74
75   /* clean up our own reference */
76   gst_object_unref (p);
77 }
78
79 GST_END_TEST;
80
81 GST_START_TEST (test_error_no_bus)
82 {
83   GstElement *e;
84
85   e = gst_element_factory_make ("fakesrc", "source");
86
87   /* I don't want errors shown */
88   gst_debug_set_default_threshold (GST_LEVEL_NONE);
89
90   GST_ELEMENT_ERROR (e, RESOURCE, OPEN_READ, ("I could not read"), ("debug"));
91
92   gst_object_unref (e);
93 }
94
95 GST_END_TEST;
96
97 /* link and run two elements without putting them in a 
98  * pipeline */
99 GST_START_TEST (test_link)
100 {
101   GstElement *src, *sink;
102
103   src = gst_element_factory_make ("fakesrc", "source");
104   sink = gst_element_factory_make ("fakesink", "sink");
105
106   fail_unless (gst_element_link_pads (src, "src", sink, "sink"));
107
108   /* do sink to source state change */
109   gst_element_set_state (sink, GST_STATE_PAUSED);
110   gst_element_set_state (src, GST_STATE_PAUSED);
111
112   /* wait for preroll */
113   gst_element_get_state (sink, NULL, NULL, NULL);
114
115   /* play some more */
116   gst_element_set_state (sink, GST_STATE_PLAYING);
117   gst_element_set_state (src, GST_STATE_PLAYING);
118
119   g_usleep (G_USEC_PER_SEC);
120
121   /* and stop */
122   gst_element_set_state (sink, GST_STATE_PAUSED);
123   gst_element_set_state (src, GST_STATE_PAUSED);
124
125   /* wait for preroll */
126   gst_element_get_state (sink, NULL, NULL, NULL);
127
128   gst_element_set_state (sink, GST_STATE_NULL);
129   gst_element_set_state (src, GST_STATE_NULL);
130 }
131
132 GST_END_TEST;
133
134 Suite *
135 gst_element_suite (void)
136 {
137   Suite *s = suite_create ("GstElement");
138   TCase *tc_chain = tcase_create ("element tests");
139
140   suite_add_tcase (s, tc_chain);
141   tcase_add_test (tc_chain, test_add_remove_pad);
142   tcase_add_test (tc_chain, test_add_pad_unref_element);
143   tcase_add_test (tc_chain, test_error_no_bus);
144   tcase_add_test (tc_chain, test_link);
145
146   return s;
147 }
148
149 int
150 main (int argc, char **argv)
151 {
152   int nf;
153
154   Suite *s = gst_element_suite ();
155   SRunner *sr = srunner_create (s);
156
157   gst_check_init (&argc, &argv);
158
159   srunner_run_all (sr, CK_NORMAL);
160   nf = srunner_ntests_failed (sr);
161   srunner_free (sr);
162
163   return nf;
164 }