7ab6045699e8b431b8dba3ec7a811fac6939af64
[platform/upstream/gstreamer.git] / tests / check / elements / funnel.c
1 /* GStreamer unit tests for the funnel
2  *
3  * Copyright (C) 2008 Collabora, Nokia
4  * @author: Olivier Crete <olivier.crete@collabora.co.uk>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 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  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
19 */
20
21
22 #ifdef HAVE_CONFIG_H
23 # include <config.h>
24 #endif
25
26 #include <gst/check/gstcheck.h>
27
28 struct TestData
29 {
30   GstElement *funnel;
31   GstPad *funnelsrc, *funnelsink11, *funnelsink22;
32   GstPad *mysink, *mysrc1, *mysrc2;
33   GstCaps *mycaps;
34 };
35
36 static void
37 setup_test_objects (struct TestData *td, GstPadChainFunction chain_func)
38 {
39   td->mycaps = gst_caps_new_empty_simple ("test/test");
40
41   td->funnel = gst_element_factory_make ("funnel", NULL);
42
43   td->funnelsrc = gst_element_get_static_pad (td->funnel, "src");
44   fail_unless (td->funnelsrc != NULL);
45
46   td->funnelsink11 = gst_element_get_request_pad (td->funnel, "sink_11");
47   fail_unless (td->funnelsink11 != NULL);
48   fail_unless (!strcmp (GST_OBJECT_NAME (td->funnelsink11), "sink_11"));
49
50   td->funnelsink22 = gst_element_get_request_pad (td->funnel, "sink_22");
51   fail_unless (td->funnelsink22 != NULL);
52   fail_unless (!strcmp (GST_OBJECT_NAME (td->funnelsink22), "sink_22"));
53
54   fail_unless (gst_element_set_state (td->funnel, GST_STATE_PLAYING) ==
55       GST_STATE_CHANGE_SUCCESS);
56
57   td->mysink = gst_pad_new ("sink", GST_PAD_SINK);
58   gst_pad_set_chain_function (td->mysink, chain_func);
59   gst_pad_set_active (td->mysink, TRUE);
60
61   td->mysrc1 = gst_pad_new ("src1", GST_PAD_SRC);
62   gst_pad_set_active (td->mysrc1, TRUE);
63   gst_check_setup_events_with_stream_id (td->mysrc1, td->funnel, td->mycaps,
64       GST_FORMAT_BYTES, "test1");
65
66   td->mysrc2 = gst_pad_new ("src2", GST_PAD_SRC);
67   gst_pad_set_active (td->mysrc2, TRUE);
68   gst_check_setup_events_with_stream_id (td->mysrc2, td->funnel, td->mycaps,
69       GST_FORMAT_BYTES, "test2");
70
71   fail_unless (GST_PAD_LINK_SUCCESSFUL (gst_pad_link (td->funnelsrc,
72               td->mysink)));
73
74   fail_unless (GST_PAD_LINK_SUCCESSFUL (gst_pad_link (td->mysrc1,
75               td->funnelsink11)));
76
77   fail_unless (GST_PAD_LINK_SUCCESSFUL (gst_pad_link (td->mysrc2,
78               td->funnelsink22)));
79
80 }
81
82 static void
83 release_test_objects (struct TestData *td)
84 {
85   gst_pad_set_active (td->mysink, FALSE);
86   gst_pad_set_active (td->mysrc1, FALSE);
87   gst_pad_set_active (td->mysrc1, FALSE);
88
89   gst_object_unref (td->mysink);
90   gst_object_unref (td->mysrc1);
91   gst_object_unref (td->mysrc2);
92
93   fail_unless (gst_element_set_state (td->funnel, GST_STATE_NULL) ==
94       GST_STATE_CHANGE_SUCCESS);
95
96   gst_object_unref (td->funnelsrc);
97   gst_element_release_request_pad (td->funnel, td->funnelsink11);
98   gst_object_unref (td->funnelsink11);
99   gst_element_release_request_pad (td->funnel, td->funnelsink22);
100   gst_object_unref (td->funnelsink22);
101
102   gst_caps_unref (td->mycaps);
103   gst_object_unref (td->funnel);
104 }
105
106 static gint bufcount = 0;
107 static gint alloccount = 0;
108
109 static GstFlowReturn
110 chain_ok (GstPad * pad, GstObject * parent, GstBuffer * buffer)
111 {
112   bufcount++;
113
114   gst_buffer_unref (buffer);
115
116   return GST_FLOW_OK;
117 }
118
119 GST_START_TEST (test_funnel_simple)
120 {
121   struct TestData td;
122 #if 0
123   GstBuffer *buf1 = NULL;
124   GstBuffer *buf2 = NULL;
125 #endif
126
127   setup_test_objects (&td, chain_ok);
128
129   bufcount = 0;
130   alloccount = 0;
131
132   fail_unless (gst_pad_push (td.mysrc1, gst_buffer_new ()) == GST_FLOW_OK);
133   fail_unless (gst_pad_push (td.mysrc2, gst_buffer_new ()) == GST_FLOW_OK);
134
135   fail_unless (bufcount == 2);
136
137 #if 0
138   fail_unless (gst_pad_alloc_buffer (td.mysrc1, 0, 1024, td.mycaps,
139           &buf1) == GST_FLOW_OK);
140   fail_unless (gst_pad_alloc_buffer (td.mysrc2, 1024, 1024, td.mycaps,
141           &buf2) == GST_FLOW_OK);
142
143   fail_unless (alloccount == 2);
144
145   gst_buffer_unref (buf1);
146   gst_buffer_unref (buf2);
147 #endif
148
149   release_test_objects (&td);
150 }
151
152 GST_END_TEST;
153
154 guint num_eos = 0;
155
156 static gboolean
157 eos_event_func (GstPad * pad, GstObject * parent, GstEvent * event)
158 {
159   if (GST_EVENT_TYPE (event) == GST_EVENT_EOS)
160     ++num_eos;
161
162   return gst_pad_event_default (pad, parent, event);
163 }
164
165 GST_START_TEST (test_funnel_eos)
166 {
167   struct TestData td;
168   GstSegment segment;
169
170   setup_test_objects (&td, chain_ok);
171
172   num_eos = 0;
173   bufcount = 0;
174
175   gst_pad_set_event_function (td.mysink, eos_event_func);
176
177   fail_unless (gst_pad_push (td.mysrc1, gst_buffer_new ()) == GST_FLOW_OK);
178   fail_unless (gst_pad_push (td.mysrc2, gst_buffer_new ()) == GST_FLOW_OK);
179
180   fail_unless (bufcount == 2);
181
182   fail_unless (gst_pad_push_event (td.mysrc1, gst_event_new_eos ()));
183   fail_unless (num_eos == 0);
184
185   fail_unless (gst_pad_push (td.mysrc1, gst_buffer_new ()) == GST_FLOW_EOS);
186   fail_unless (gst_pad_push (td.mysrc2, gst_buffer_new ()) == GST_FLOW_OK);
187
188   fail_unless (bufcount == 3);
189
190   fail_unless (gst_pad_push_event (td.mysrc2, gst_event_new_eos ()));
191   fail_unless (num_eos == 1);
192
193   fail_unless (gst_pad_push (td.mysrc1, gst_buffer_new ()) == GST_FLOW_EOS);
194   fail_unless (gst_pad_push (td.mysrc2, gst_buffer_new ()) == GST_FLOW_EOS);
195
196   fail_unless (bufcount == 3);
197
198   fail_unless (gst_pad_push_event (td.mysrc1, gst_event_new_flush_start ()));
199   fail_unless (gst_pad_push_event (td.mysrc1, gst_event_new_flush_stop (TRUE)));
200
201   gst_segment_init (&segment, GST_FORMAT_BYTES);
202   gst_pad_push_event (td.mysrc1, gst_event_new_segment (&segment));
203   gst_pad_push_event (td.mysrc2, gst_event_new_segment (&segment));
204
205   fail_unless (gst_pad_push (td.mysrc1, gst_buffer_new ()) == GST_FLOW_OK);
206   fail_unless (gst_pad_push (td.mysrc2, gst_buffer_new ()) == GST_FLOW_EOS);
207
208   fail_unless (bufcount == 4);
209
210   fail_unless (gst_pad_unlink (td.mysrc1, td.funnelsink11));
211   gst_element_release_request_pad (td.funnel, td.funnelsink11);
212   gst_object_unref (td.funnelsink11);
213   fail_unless (num_eos == 2);
214
215   td.funnelsink11 = gst_element_get_request_pad (td.funnel, "sink_11");
216   fail_unless (td.funnelsink11 != NULL);
217   fail_unless (!strcmp (GST_OBJECT_NAME (td.funnelsink11), "sink_11"));
218
219   fail_unless (GST_PAD_LINK_SUCCESSFUL (gst_pad_link (td.mysrc1,
220               td.funnelsink11)));
221
222   /* This will fail because everything is EOS already */
223   fail_if (gst_pad_push_event (td.mysrc1, gst_event_new_eos ()));
224   fail_unless (num_eos == 2);
225
226   fail_unless (gst_pad_unlink (td.mysrc1, td.funnelsink11));
227   gst_element_release_request_pad (td.funnel, td.funnelsink11);
228   gst_object_unref (td.funnelsink11);
229   fail_unless (num_eos == 2);
230
231   td.funnelsink11 = gst_element_get_request_pad (td.funnel, "sink_11");
232   fail_unless (td.funnelsink11 != NULL);
233   fail_unless (!strcmp (GST_OBJECT_NAME (td.funnelsink11), "sink_11"));
234
235   release_test_objects (&td);
236 }
237
238 GST_END_TEST;
239
240 static Suite *
241 funnel_suite (void)
242 {
243   Suite *s = suite_create ("funnel");
244   TCase *tc_chain;
245
246   tc_chain = tcase_create ("funnel simple");
247   tcase_add_test (tc_chain, test_funnel_simple);
248   tcase_add_test (tc_chain, test_funnel_eos);
249   suite_add_tcase (s, tc_chain);
250
251   return s;
252 }
253
254 GST_CHECK_MAIN (funnel);