memory: remove memory metadata again
[platform/upstream/gstreamer.git] / tests / check / gst / gstpad.c
1 /* GStreamer
2  * Copyright (C) <2005> Thomas Vander Stichele <thomas at apestaart dot org>
3  *
4  * gstpad.c: Unit test for GstPad
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 <gst/check/gstcheck.h>
23
24 GST_START_TEST (test_link)
25 {
26   GstPad *src, *sink;
27   GstPadTemplate *srct;
28
29   GstPadLinkReturn ret;
30   gchar *name;
31
32   src = gst_pad_new ("source", GST_PAD_SRC);
33   fail_if (src == NULL);
34   ASSERT_OBJECT_REFCOUNT (src, "source pad", 1);
35
36   name = gst_pad_get_name (src);
37   fail_unless (strcmp (name, "source") == 0);
38   ASSERT_OBJECT_REFCOUNT (src, "source pad", 1);
39   g_free (name);
40
41   sink = gst_pad_new ("sink", GST_PAD_SINK);
42   fail_if (sink == NULL);
43
44   /* linking without templates or caps should fail */
45   ret = gst_pad_link (src, sink);
46   ASSERT_OBJECT_REFCOUNT (src, "source pad", 1);
47   ASSERT_OBJECT_REFCOUNT (sink, "sink pad", 1);
48   fail_unless (ret == GST_PAD_LINK_NOFORMAT);
49
50   ASSERT_CRITICAL (gst_pad_get_pad_template (NULL));
51
52   srct = gst_pad_get_pad_template (src);
53   fail_unless (srct == NULL);
54   ASSERT_OBJECT_REFCOUNT (src, "source pad", 1);
55
56   /* clean up */
57   ASSERT_OBJECT_REFCOUNT (src, "source pad", 1);
58   gst_object_unref (src);
59   gst_object_unref (sink);
60 }
61
62 GST_END_TEST;
63
64 /* threaded link/unlink */
65 /* use globals */
66 static GstPad *src, *sink;
67
68 static void
69 thread_link_unlink (gpointer data)
70 {
71   THREAD_START ();
72
73   while (THREAD_TEST_RUNNING ()) {
74     gst_pad_link (src, sink);
75     gst_pad_unlink (src, sink);
76     THREAD_SWITCH ();
77   }
78 }
79
80 GST_START_TEST (test_link_unlink_threaded)
81 {
82   GstCaps *caps;
83   int i;
84
85   src = gst_pad_new ("source", GST_PAD_SRC);
86   fail_if (src == NULL);
87   sink = gst_pad_new ("sink", GST_PAD_SINK);
88   fail_if (sink == NULL);
89
90   caps = gst_caps_from_string ("foo/bar");
91   gst_pad_set_caps (src, caps);
92   gst_pad_set_caps (sink, caps);
93   ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
94
95   MAIN_START_THREADS (5, thread_link_unlink, NULL);
96   for (i = 0; i < 1000; ++i) {
97     gst_pad_is_linked (src);
98     gst_pad_is_linked (sink);
99     THREAD_SWITCH ();
100   }
101   MAIN_STOP_THREADS ();
102
103   ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
104   gst_caps_unref (caps);
105
106   ASSERT_CAPS_REFCOUNT (caps, "caps", 2);
107   gst_object_unref (src);
108   gst_object_unref (sink);
109 }
110
111 GST_END_TEST;
112
113 GST_START_TEST (test_refcount)
114 {
115   GstPad *src, *sink;
116   GstCaps *caps;
117   GstPadLinkReturn plr;
118
119   sink = gst_pad_new ("sink", GST_PAD_SINK);
120   fail_if (sink == NULL);
121
122   src = gst_pad_new ("src", GST_PAD_SRC);
123   fail_if (src == NULL);
124
125   caps = gst_caps_from_string ("foo/bar");
126   /* one for me */
127   ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
128
129   gst_pad_set_caps (src, caps);
130   gst_pad_set_caps (sink, caps);
131   /* one for me and one for each set_caps */
132   ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
133
134   plr = gst_pad_link (src, sink);
135   fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
136   ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
137
138   gst_pad_unlink (src, sink);
139   ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
140
141   /* cleanup */
142   gst_object_unref (src);
143   gst_object_unref (sink);
144   ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
145
146   gst_caps_unref (caps);
147 }
148
149 GST_END_TEST;
150
151 GST_START_TEST (test_get_allowed_caps)
152 {
153   GstPad *src, *sink;
154   GstCaps *caps, *gotcaps;
155   GstBuffer *buffer;
156   GstPadLinkReturn plr;
157
158   ASSERT_CRITICAL (gst_pad_get_allowed_caps (NULL));
159
160   buffer = gst_buffer_new ();
161   ASSERT_CRITICAL (gst_pad_get_allowed_caps ((GstPad *) buffer));
162   gst_buffer_unref (buffer);
163
164   src = gst_pad_new ("src", GST_PAD_SRC);
165   fail_if (src == NULL);
166   caps = gst_pad_get_allowed_caps (src);
167   fail_unless (caps == NULL);
168
169   caps = gst_caps_from_string ("foo/bar");
170
171   sink = gst_pad_new ("sink", GST_PAD_SINK);
172   gst_pad_set_caps (src, caps);
173   gst_pad_set_caps (sink, caps);
174   ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
175
176   plr = gst_pad_link (src, sink);
177   fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
178
179   gotcaps = gst_pad_get_allowed_caps (src);
180   fail_if (gotcaps == NULL);
181   fail_unless (gst_caps_is_equal (gotcaps, caps));
182
183   ASSERT_CAPS_REFCOUNT (gotcaps, "gotcaps", 1);
184   gst_caps_unref (gotcaps);
185
186   gst_pad_unlink (src, sink);
187
188   /* cleanup */
189   ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
190   ASSERT_OBJECT_REFCOUNT (src, "src", 1);
191   ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
192
193   gst_object_unref (src);
194   gst_object_unref (sink);
195
196   ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
197   gst_caps_unref (caps);
198 }
199
200 GST_END_TEST;
201
202 static gboolean
203 name_is_valid (const gchar * name, GstPadPresence presence)
204 {
205   GstPadTemplate *new;
206   GstCaps *any = GST_CAPS_ANY;
207
208   new = gst_pad_template_new (name, GST_PAD_SRC, presence, any);
209   if (new) {
210     gst_object_unref (GST_OBJECT (new));
211     return TRUE;
212   }
213   return FALSE;
214 }
215
216 GST_START_TEST (test_name_is_valid)
217 {
218   gboolean result = FALSE;
219
220   fail_unless (name_is_valid ("src", GST_PAD_ALWAYS));
221   ASSERT_WARNING (name_is_valid ("src%", GST_PAD_ALWAYS));
222   ASSERT_WARNING (result = name_is_valid ("src%d", GST_PAD_ALWAYS));
223   fail_if (result);
224
225   fail_unless (name_is_valid ("src", GST_PAD_REQUEST));
226   ASSERT_WARNING (name_is_valid ("src%s%s", GST_PAD_REQUEST));
227   ASSERT_WARNING (name_is_valid ("src%c", GST_PAD_REQUEST));
228   ASSERT_WARNING (name_is_valid ("src%", GST_PAD_REQUEST));
229   ASSERT_WARNING (name_is_valid ("src%dsrc", GST_PAD_REQUEST));
230
231   fail_unless (name_is_valid ("src", GST_PAD_SOMETIMES));
232   fail_unless (name_is_valid ("src%c", GST_PAD_SOMETIMES));
233 }
234
235 GST_END_TEST;
236
237 static gboolean
238 _probe_handler (GstPad * pad, GstBuffer * buffer, gpointer userdata)
239 {
240   gint ret = GPOINTER_TO_INT (userdata);
241
242   if (ret == 1)
243     return TRUE;
244   return FALSE;
245 }
246
247 GST_START_TEST (test_push_unlinked)
248 {
249   GstPad *src;
250   GstCaps *caps;
251   GstBuffer *buffer;
252   gulong id;
253
254   src = gst_pad_new ("src", GST_PAD_SRC);
255   fail_if (src == NULL);
256   caps = gst_pad_get_allowed_caps (src);
257   fail_unless (caps == NULL);
258
259   caps = gst_caps_from_string ("foo/bar");
260
261   gst_pad_set_caps (src, caps);
262   ASSERT_CAPS_REFCOUNT (caps, "caps", 2);
263
264   /* pushing on an unlinked pad will drop the buffer */
265   buffer = gst_buffer_new ();
266   gst_buffer_ref (buffer);
267   fail_unless (gst_pad_push (src, buffer) == GST_FLOW_NOT_LINKED);
268   ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
269   gst_buffer_unref (buffer);
270
271   /* adding a probe that returns FALSE will drop the buffer without trying
272    * to chain */
273   id = gst_pad_add_buffer_probe (src, (GCallback) _probe_handler,
274       GINT_TO_POINTER (0));
275   buffer = gst_buffer_new ();
276   gst_buffer_ref (buffer);
277   fail_unless (gst_pad_push (src, buffer) == GST_FLOW_OK);
278   ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
279   gst_buffer_unref (buffer);
280   gst_pad_remove_buffer_probe (src, id);
281
282   /* adding a probe that returns TRUE will still chain the buffer,
283    * and hence drop because pad is unlinked */
284   id = gst_pad_add_buffer_probe (src, (GCallback) _probe_handler,
285       GINT_TO_POINTER (1));
286   buffer = gst_buffer_new ();
287   gst_buffer_ref (buffer);
288   fail_unless (gst_pad_push (src, buffer) == GST_FLOW_NOT_LINKED);
289   ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
290   gst_buffer_unref (buffer);
291   gst_pad_remove_buffer_probe (src, id);
292
293
294   /* cleanup */
295   ASSERT_CAPS_REFCOUNT (caps, "caps", 2);
296   ASSERT_OBJECT_REFCOUNT (src, "src", 1);
297
298   gst_object_unref (src);
299
300   ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
301   gst_caps_unref (caps);
302 }
303
304 GST_END_TEST;
305
306 GST_START_TEST (test_push_linked)
307 {
308   GstPad *src, *sink;
309   GstPadLinkReturn plr;
310   GstCaps *caps;
311   GstBuffer *buffer;
312   gulong id;
313
314   /* setup */
315   sink = gst_pad_new ("sink", GST_PAD_SINK);
316   fail_if (sink == NULL);
317   gst_pad_set_chain_function (sink, gst_check_chain_func);
318
319   src = gst_pad_new ("src", GST_PAD_SRC);
320   fail_if (src == NULL);
321
322   caps = gst_caps_from_string ("foo/bar");
323   /* one for me */
324   ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
325
326   gst_pad_set_caps (src, caps);
327   gst_pad_set_caps (sink, caps);
328   /* one for me and one for each set_caps */
329   ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
330
331   plr = gst_pad_link (src, sink);
332   fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
333   ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
334
335   buffer = gst_buffer_new ();
336 #if 0
337   /* FIXME, new pad should be flushing */
338   gst_buffer_ref (buffer);
339   fail_unless (gst_pad_push (src, buffer) == GST_FLOW_WRONG_STATE);
340   gst_buffer_ref (buffer);
341   fail_unless (gst_pad_chain (sink, buffer) == GST_FLOW_WRONG_STATE);
342 #endif
343
344   /* activate pads */
345   gst_pad_set_active (src, TRUE);
346   gst_pad_set_active (sink, TRUE);
347
348   /* test */
349   /* pushing on a linked pad will drop the ref to the buffer */
350   gst_buffer_ref (buffer);
351   fail_unless (gst_pad_push (src, buffer) == GST_FLOW_OK);
352   ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 2);
353   gst_buffer_unref (buffer);
354   fail_unless_equals_int (g_list_length (buffers), 1);
355   buffer = GST_BUFFER (buffers->data);
356   ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
357   gst_buffer_unref (buffer);
358   g_list_free (buffers);
359   buffers = NULL;
360
361   /* adding a probe that returns FALSE will drop the buffer without trying
362    * to chain */
363   id = gst_pad_add_buffer_probe (src, (GCallback) _probe_handler,
364       GINT_TO_POINTER (0));
365   buffer = gst_buffer_new ();
366   gst_buffer_ref (buffer);
367   fail_unless (gst_pad_push (src, buffer) == GST_FLOW_OK);
368   ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
369   gst_buffer_unref (buffer);
370   gst_pad_remove_buffer_probe (src, id);
371   fail_unless_equals_int (g_list_length (buffers), 0);
372
373   /* adding a probe that returns TRUE will still chain the buffer */
374   id = gst_pad_add_buffer_probe (src, (GCallback) _probe_handler,
375       GINT_TO_POINTER (1));
376   buffer = gst_buffer_new ();
377   gst_buffer_ref (buffer);
378   fail_unless (gst_pad_push (src, buffer) == GST_FLOW_OK);
379   gst_pad_remove_buffer_probe (src, id);
380
381   ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 2);
382   gst_buffer_unref (buffer);
383   fail_unless_equals_int (g_list_length (buffers), 1);
384   buffer = GST_BUFFER (buffers->data);
385   ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
386   gst_buffer_unref (buffer);
387   g_list_free (buffers);
388   buffers = NULL;
389
390   /* teardown */
391   gst_pad_unlink (src, sink);
392   ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
393   gst_object_unref (src);
394   gst_object_unref (sink);
395   ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
396
397   gst_caps_unref (caps);
398 }
399
400 GST_END_TEST;
401
402 static GstBuffer *
403 buffer_from_string (const gchar * str)
404 {
405   guint size;
406   GstBuffer *buf;
407   gpointer data;
408
409   size = strlen (str);
410   buf = gst_buffer_new_and_alloc (size);
411
412   data = gst_buffer_map (buf, NULL, NULL, GST_MAP_WRITE);
413   memcpy (data, str, size);
414   gst_buffer_unmap (buf, data, size);
415
416   return buf;
417 }
418
419 static gboolean
420 buffer_compare (GstBuffer * buf, const gchar * str, gsize size)
421 {
422   gboolean res;
423   gpointer data;
424
425   data = gst_buffer_map (buf, NULL, NULL, GST_MAP_READ);
426   res = memcmp (data, str, size) == 0;
427   gst_buffer_unmap (buf, data, size);
428
429   return res;
430 }
431
432 GST_START_TEST (test_push_buffer_list_compat)
433 {
434   GstPad *src, *sink;
435   GstPadLinkReturn plr;
436   GstCaps *caps;
437   GstBufferList *list;
438   GstBufferListIterator *it;
439   GstBuffer *buffer;
440
441   /* setup */
442   sink = gst_pad_new ("sink", GST_PAD_SINK);
443   fail_if (sink == NULL);
444   gst_pad_set_chain_function (sink, gst_check_chain_func);
445   /* leave chainlistfunc unset */
446
447   src = gst_pad_new ("src", GST_PAD_SRC);
448   fail_if (src == NULL);
449
450   caps = gst_caps_from_string ("foo/bar");
451
452   gst_pad_set_caps (src, caps);
453   gst_pad_set_caps (sink, caps);
454
455   plr = gst_pad_link (src, sink);
456   fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
457
458   list = gst_buffer_list_new ();
459
460   /* activate pads */
461   gst_pad_set_active (src, TRUE);
462   gst_pad_set_active (sink, TRUE);
463
464   /* test */
465   /* adding to a buffer list will drop the ref to the buffer */
466   it = gst_buffer_list_iterate (list);
467   gst_buffer_list_iterator_add_group (it);
468   gst_buffer_list_iterator_add (it, buffer_from_string ("List"));
469   gst_buffer_list_iterator_add (it, buffer_from_string ("Group"));
470   gst_buffer_list_iterator_add_group (it);
471   gst_buffer_list_iterator_add (it, buffer_from_string ("Another"));
472   gst_buffer_list_iterator_add (it, buffer_from_string ("List"));
473   gst_buffer_list_iterator_add (it, buffer_from_string ("Group"));
474   gst_buffer_list_iterator_free (it);
475   fail_unless (gst_pad_push_list (src, list) == GST_FLOW_OK);
476   fail_unless_equals_int (g_list_length (buffers), 2);
477   buffer = GST_BUFFER (buffers->data);
478   ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
479   fail_unless (buffer_compare (buffer, "ListGroup", 9) == 0);
480   gst_buffer_unref (buffer);
481   buffers = g_list_delete_link (buffers, buffers);
482   buffer = GST_BUFFER (buffers->data);
483   ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
484   fail_unless (buffer_compare (buffer, "AnotherListGroup", 16) == 0);
485   gst_buffer_unref (buffer);
486   buffers = g_list_delete_link (buffers, buffers);
487   fail_unless (buffers == NULL);
488
489   /* teardown */
490   gst_pad_unlink (src, sink);
491   gst_object_unref (src);
492   gst_object_unref (sink);
493   ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
494   gst_caps_unref (caps);
495 }
496
497 GST_END_TEST;
498
499 GST_START_TEST (test_flowreturn)
500 {
501   GstFlowReturn ret;
502   GQuark quark;
503
504   /* test some of the macros */
505   ret = GST_FLOW_UNEXPECTED;
506   fail_if (strcmp (gst_flow_get_name (ret), "unexpected"));
507   quark = gst_flow_to_quark (ret);
508   fail_if (strcmp (g_quark_to_string (quark), "unexpected"));
509
510   ret = GST_FLOW_RESEND;
511   fail_if (strcmp (gst_flow_get_name (ret), "resend"));
512   quark = gst_flow_to_quark (ret);
513   fail_if (strcmp (g_quark_to_string (quark), "resend"));
514
515   /* custom returns */
516   ret = GST_FLOW_CUSTOM_SUCCESS;
517   fail_if (strcmp (gst_flow_get_name (ret), "custom-success"));
518   quark = gst_flow_to_quark (ret);
519   fail_if (strcmp (g_quark_to_string (quark), "custom-success"));
520
521   ret = GST_FLOW_CUSTOM_ERROR;
522   fail_if (strcmp (gst_flow_get_name (ret), "custom-error"));
523   quark = gst_flow_to_quark (ret);
524   fail_if (strcmp (g_quark_to_string (quark), "custom-error"));
525
526   /* custom returns clamping */
527   ret = GST_FLOW_CUSTOM_SUCCESS + 2;
528   fail_if (strcmp (gst_flow_get_name (ret), "custom-success"));
529   quark = gst_flow_to_quark (ret);
530   fail_if (strcmp (g_quark_to_string (quark), "custom-success"));
531
532   ret = GST_FLOW_CUSTOM_ERROR - 2;
533   fail_if (strcmp (gst_flow_get_name (ret), "custom-error"));
534   quark = gst_flow_to_quark (ret);
535   fail_if (strcmp (g_quark_to_string (quark), "custom-error"));
536
537   /* unknown values */
538   ret = GST_FLOW_CUSTOM_ERROR + 2;
539   fail_if (strcmp (gst_flow_get_name (ret), "unknown"));
540   quark = gst_flow_to_quark (ret);
541   fail_unless (quark == 0);
542 }
543
544 GST_END_TEST;
545
546 GST_START_TEST (test_push_negotiation)
547 {
548   GstPad *src, *sink;
549   GstPadLinkReturn plr;
550   GstCaps *srccaps =
551       gst_caps_from_string ("audio/x-raw-int,width={16,32},depth={16,32}");
552   GstCaps *sinkcaps =
553       gst_caps_from_string ("audio/x-raw-int,width=32,depth={16,32}");
554   GstPadTemplate *src_template;
555   GstPadTemplate *sink_template;
556   GstCaps *caps;
557   GstBuffer *buffer;
558
559   /* setup */
560   src_template = gst_pad_template_new ("src", GST_PAD_SRC,
561       GST_PAD_ALWAYS, srccaps);
562   sink_template = gst_pad_template_new ("sink", GST_PAD_SINK,
563       GST_PAD_ALWAYS, sinkcaps);
564
565   sink = gst_pad_new_from_template (sink_template, "sink");
566   fail_if (sink == NULL);
567   gst_pad_set_chain_function (sink, gst_check_chain_func);
568
569   src = gst_pad_new_from_template (src_template, "src");
570   fail_if (src == NULL);
571
572   plr = gst_pad_link (src, sink);
573   fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
574
575   buffer = gst_buffer_new ();
576
577   /* activate pads */
578   gst_pad_set_active (src, TRUE);
579   gst_pad_set_active (sink, TRUE);
580
581   caps = gst_caps_from_string ("audio/x-raw-int,width=16,depth=16");
582
583   /* Should fail if src pad caps are incompatible with sink pad caps */
584   gst_pad_set_caps (src, caps);
585   gst_buffer_set_caps (buffer, caps);
586   gst_buffer_ref (buffer);
587   fail_unless (gst_pad_push (src, buffer) == GST_FLOW_NOT_NEGOTIATED);
588   ASSERT_MINI_OBJECT_REFCOUNT (buffer, "buffer", 1);
589   gst_buffer_unref (buffer);
590
591   /* teardown */
592   gst_pad_unlink (src, sink);
593   gst_object_unref (src);
594   gst_object_unref (sink);
595   gst_caps_unref (caps);
596   gst_object_unref (sink_template);
597   gst_object_unref (src_template);
598 }
599
600 GST_END_TEST;
601
602 /* see that an unref also unlinks the pads */
603 GST_START_TEST (test_src_unref_unlink)
604 {
605   GstPad *src, *sink;
606   GstCaps *caps;
607   GstPadLinkReturn plr;
608
609   sink = gst_pad_new ("sink", GST_PAD_SINK);
610   fail_if (sink == NULL);
611
612   src = gst_pad_new ("src", GST_PAD_SRC);
613   fail_if (src == NULL);
614
615   caps = gst_caps_from_string ("foo/bar");
616
617   gst_pad_set_caps (src, caps);
618   gst_pad_set_caps (sink, caps);
619
620   plr = gst_pad_link (src, sink);
621   fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
622
623   /* unref the srcpad */
624   gst_object_unref (src);
625
626   /* sink should be unlinked now */
627   fail_if (gst_pad_is_linked (sink));
628
629   /* cleanup */
630   gst_object_unref (sink);
631   gst_caps_unref (caps);
632 }
633
634 GST_END_TEST;
635
636 /* see that an unref also unlinks the pads */
637 GST_START_TEST (test_sink_unref_unlink)
638 {
639   GstPad *src, *sink;
640   GstCaps *caps;
641   GstPadLinkReturn plr;
642
643   sink = gst_pad_new ("sink", GST_PAD_SINK);
644   fail_if (sink == NULL);
645
646   src = gst_pad_new ("src", GST_PAD_SRC);
647   fail_if (src == NULL);
648
649   caps = gst_caps_from_string ("foo/bar");
650
651   gst_pad_set_caps (src, caps);
652   gst_pad_set_caps (sink, caps);
653
654   plr = gst_pad_link (src, sink);
655   fail_unless (GST_PAD_LINK_SUCCESSFUL (plr));
656
657   /* unref the sinkpad */
658   gst_object_unref (sink);
659
660   /* src should be unlinked now */
661   fail_if (gst_pad_is_linked (src));
662
663   /* cleanup */
664   gst_object_unref (src);
665   gst_caps_unref (caps);
666 }
667
668 GST_END_TEST;
669
670 static void
671 unblock_async_cb (GstPad * pad, gboolean blocked, gpointer user_data)
672 {
673   gboolean *bool_user_data = (gboolean *) user_data;
674
675   /* here we should have blocked == 1 unblocked == 0 */
676   fail_unless (bool_user_data[0] == TRUE);
677   fail_unless (bool_user_data[1] == FALSE);
678
679   bool_user_data[1] = TRUE;
680 }
681
682 static void
683 block_async_cb (GstPad * pad, gboolean blocked, gpointer user_data)
684 {
685   gboolean *bool_user_data = (gboolean *) user_data;
686
687   /* here we should have blocked == 0 unblocked == 0 */
688   fail_unless (bool_user_data[0] == FALSE);
689   fail_unless (bool_user_data[1] == FALSE);
690
691   bool_user_data[0] = blocked;
692
693   gst_pad_set_blocked_async (pad, FALSE, unblock_async_cb, user_data);
694 }
695
696 GST_START_TEST (test_block_async)
697 {
698   GstPad *pad;
699   /* we set data[0] = TRUE when the pad is blocked, data[1] = TRUE when it's
700    * unblocked */
701   gboolean data[2] = { FALSE, FALSE };
702
703   pad = gst_pad_new ("src", GST_PAD_SRC);
704   fail_unless (pad != NULL);
705
706   gst_pad_set_active (pad, TRUE);
707   gst_pad_set_blocked_async (pad, TRUE, block_async_cb, &data);
708
709   fail_unless (data[0] == FALSE);
710   fail_unless (data[1] == FALSE);
711   gst_pad_push (pad, gst_buffer_new ());
712
713   gst_object_unref (pad);
714 }
715
716 GST_END_TEST;
717
718 #if 0
719 static void
720 block_async_second (GstPad * pad, gboolean blocked, gpointer user_data)
721 {
722   gst_pad_set_blocked_async (pad, FALSE, unblock_async_cb, NULL);
723 }
724
725 static void
726 block_async_first (GstPad * pad, gboolean blocked, gpointer user_data)
727 {
728   static int n_calls = 0;
729   gboolean *bool_user_data = (gboolean *) user_data;
730
731   if (++n_calls > 1)
732     /* we expect this callback to be called only once */
733     g_warn_if_reached ();
734
735   *bool_user_data = blocked;
736
737   /* replace block_async_first with block_async_second so next time the pad is
738    * blocked the latter should be called */
739   gst_pad_set_blocked_async (pad, TRUE, block_async_second, NULL);
740
741   /* unblock temporarily, in the next push block_async_second should be called
742    */
743   gst_pad_push_event (pad, gst_event_new_flush_start ());
744 }
745
746 GST_START_TEST (test_block_async_replace_callback)
747 {
748   GstPad *pad;
749   gboolean blocked;
750
751   pad = gst_pad_new ("src", GST_PAD_SRC);
752   fail_unless (pad != NULL);
753   gst_pad_set_active (pad, TRUE);
754
755   gst_pad_set_blocked_async (pad, TRUE, block_async_first, &blocked);
756   blocked = FALSE;
757
758   gst_pad_push (pad, gst_buffer_new ());
759   fail_unless (blocked == TRUE);
760   /* block_async_first flushes to unblock */
761   gst_pad_push_event (pad, gst_event_new_flush_stop ());
762
763   /* push again, this time block_async_second should be called */
764   gst_pad_push (pad, gst_buffer_new ());
765   fail_unless (blocked == TRUE);
766
767   gst_object_unref (pad);
768 }
769
770 GST_END_TEST;
771 #endif
772
773 static void
774 block_async_full_destroy (gpointer user_data)
775 {
776   gint *state = (gint *) user_data;
777
778   fail_unless (*state < 2);
779
780   GST_DEBUG ("setting state to 2");
781   *state = 2;
782 }
783
784 static void
785 block_async_full_cb (GstPad * pad, gboolean blocked, gpointer user_data)
786 {
787   *(gint *) user_data = (gint) blocked;
788
789   gst_pad_push_event (pad, gst_event_new_flush_start ());
790   GST_DEBUG ("setting state to 1");
791 }
792
793 GST_START_TEST (test_block_async_full_destroy)
794 {
795   GstPad *pad;
796   /* 0 = unblocked, 1 = blocked, 2 = destroyed */
797   gint state = 0;
798
799   pad = gst_pad_new ("src", GST_PAD_SRC);
800   fail_unless (pad != NULL);
801   gst_pad_set_active (pad, TRUE);
802
803   gst_pad_set_blocked_async_full (pad, TRUE, block_async_full_cb,
804       &state, block_async_full_destroy);
805   fail_unless (state == 0);
806
807   gst_pad_push (pad, gst_buffer_new ());
808   /* block_async_full_cb sets state to 1 and then flushes to unblock temporarily
809    */
810   fail_unless (state == 1);
811   gst_pad_push_event (pad, gst_event_new_flush_stop ());
812
813   /* pad was already blocked so nothing happens */
814   gst_pad_set_blocked_async_full (pad, TRUE, block_async_full_cb,
815       &state, block_async_full_destroy);
816   fail_unless (state == 1);
817
818   /* unblock with the same data, callback is called */
819   gst_pad_set_blocked_async_full (pad, FALSE, block_async_full_cb,
820       &state, block_async_full_destroy);
821   fail_unless (state == 2);
822
823   /* block with the same data, callback is called */
824   state = 1;
825   gst_pad_set_blocked_async_full (pad, TRUE, block_async_full_cb,
826       &state, block_async_full_destroy);
827   fail_unless (state == 2);
828
829   /* now change user_data (to NULL in this case) so destroy_notify should be
830    * called */
831   state = 1;
832   gst_pad_set_blocked_async_full (pad, FALSE, block_async_full_cb,
833       NULL, block_async_full_destroy);
834   fail_unless (state == 2);
835
836   gst_object_unref (pad);
837 }
838
839 GST_END_TEST;
840
841 GST_START_TEST (test_block_async_full_destroy_dispose)
842 {
843   GstPad *pad;
844   /* 0 = unblocked, 1 = blocked, 2 = destroyed */
845   gint state = 0;
846
847   pad = gst_pad_new ("src", GST_PAD_SRC);
848   fail_unless (pad != NULL);
849   gst_pad_set_active (pad, TRUE);
850
851   gst_pad_set_blocked_async_full (pad, TRUE, block_async_full_cb,
852       &state, block_async_full_destroy);
853
854   gst_pad_push (pad, gst_buffer_new ());
855   /* block_async_full_cb sets state to 1 and then flushes to unblock temporarily
856    */
857   fail_unless_equals_int (state, 1);
858   gst_pad_push_event (pad, gst_event_new_flush_stop ());
859
860   /* gst_pad_dispose calls the destroy_notify function if necessary */
861   gst_object_unref (pad);
862
863   fail_unless_equals_int (state, 2);
864 }
865
866 GST_END_TEST;
867
868
869 static void
870 unblock_async_no_flush_cb (GstPad * pad, gboolean blocked, gpointer user_data)
871 {
872   gboolean *bool_user_data = (gboolean *) user_data;
873
874   /* here we should have blocked == 1 unblocked == 0 */
875
876   fail_unless (blocked == FALSE);
877
878   fail_unless (bool_user_data[0] == TRUE);
879   fail_unless (bool_user_data[1] == TRUE);
880   fail_unless (bool_user_data[2] == FALSE);
881
882   bool_user_data[2] = TRUE;
883 }
884
885
886 static void
887 unblock_async_not_called (GstPad * pad, gboolean blocked, gpointer user_data)
888 {
889   g_warn_if_reached ();
890 }
891
892 static void
893 block_async_second_no_flush (GstPad * pad, gboolean blocked, gpointer user_data)
894 {
895   gboolean *bool_user_data = (gboolean *) user_data;
896
897   fail_unless (blocked == TRUE);
898
899   fail_unless (bool_user_data[0] == TRUE);
900   fail_unless (bool_user_data[1] == FALSE);
901   fail_unless (bool_user_data[2] == FALSE);
902
903   bool_user_data[1] = TRUE;
904
905   fail_unless (gst_pad_set_blocked_async (pad, FALSE, unblock_async_no_flush_cb,
906           user_data));
907 }
908
909 static void
910 block_async_first_no_flush (GstPad * pad, gboolean blocked, gpointer user_data)
911 {
912   static int n_calls = 0;
913   gboolean *bool_user_data = (gboolean *) user_data;
914
915   fail_unless (blocked == TRUE);
916
917   if (++n_calls > 1)
918     /* we expect this callback to be called only once */
919     g_warn_if_reached ();
920
921   *bool_user_data = blocked;
922
923   fail_unless (bool_user_data[0] == TRUE);
924   fail_unless (bool_user_data[1] == FALSE);
925   fail_unless (bool_user_data[2] == FALSE);
926
927   fail_unless (gst_pad_set_blocked_async (pad, FALSE, unblock_async_not_called,
928           NULL));
929
930   /* replace block_async_first with block_async_second so next time the pad is
931    * blocked the latter should be called */
932   fail_unless (gst_pad_set_blocked_async (pad, TRUE,
933           block_async_second_no_flush, user_data));
934 }
935
936 GST_START_TEST (test_block_async_replace_callback_no_flush)
937 {
938   GstPad *pad;
939   gboolean bool_user_data[3] = { FALSE, FALSE, FALSE };
940
941   pad = gst_pad_new ("src", GST_PAD_SRC);
942   fail_unless (pad != NULL);
943   gst_pad_set_active (pad, TRUE);
944
945   fail_unless (gst_pad_set_blocked_async (pad, TRUE, block_async_first_no_flush,
946           bool_user_data));
947
948   gst_pad_push (pad, gst_buffer_new ());
949   fail_unless (bool_user_data[0] == TRUE);
950   fail_unless (bool_user_data[1] == TRUE);
951   fail_unless (bool_user_data[2] == TRUE);
952
953   gst_object_unref (pad);
954 }
955
956 GST_END_TEST;
957
958
959 static Suite *
960 gst_pad_suite (void)
961 {
962   Suite *s = suite_create ("GstPad");
963   TCase *tc_chain = tcase_create ("general");
964
965   /* turn off timeout */
966   tcase_set_timeout (tc_chain, 60);
967
968   suite_add_tcase (s, tc_chain);
969   tcase_add_test (tc_chain, test_link);
970   tcase_add_test (tc_chain, test_refcount);
971   tcase_add_test (tc_chain, test_get_allowed_caps);
972   tcase_add_test (tc_chain, test_link_unlink_threaded);
973   tcase_add_test (tc_chain, test_name_is_valid);
974   tcase_add_test (tc_chain, test_push_unlinked);
975   tcase_add_test (tc_chain, test_push_linked);
976   tcase_add_test (tc_chain, test_push_buffer_list_compat);
977   tcase_add_test (tc_chain, test_flowreturn);
978   tcase_add_test (tc_chain, test_push_negotiation);
979   tcase_add_test (tc_chain, test_src_unref_unlink);
980   tcase_add_test (tc_chain, test_sink_unref_unlink);
981   tcase_add_test (tc_chain, test_block_async);
982 #if 0
983   tcase_add_test (tc_chain, test_block_async_replace_callback);
984 #endif
985   tcase_add_test (tc_chain, test_block_async_full_destroy);
986   tcase_add_test (tc_chain, test_block_async_full_destroy_dispose);
987   tcase_add_test (tc_chain, test_block_async_replace_callback_no_flush);
988
989   return s;
990 }
991
992 GST_CHECK_MAIN (gst_pad);