check/gst/gstpad.c: Oh yeah, it's always nice to make the regressions tests work...
[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 "../gstcheck.h"
23
24 START_TEST (test_link)
25 {
26   GstPad *src, *sink;
27   GstPadTemplate *srct;         //, *sinkt;
28
29   GstPadLinkReturn ret;
30   gchar *name;
31
32   src = gst_pad_new ("source", GST_PAD_SRC);
33   fail_if (src == NULL);
34
35   name = gst_pad_get_name (src);
36   fail_unless (strcmp (name, "source") == 0);
37
38   sink = gst_pad_new ("sink", GST_PAD_SINK);
39   fail_if (sink == NULL);
40
41   /* linking without templates should fail */
42   ret = gst_pad_link (src, sink);
43   fail_unless (ret == GST_PAD_LINK_NOFORMAT);
44
45   ASSERT_CRITICAL (gst_pad_get_pad_template (NULL));
46
47   srct = gst_pad_get_pad_template (src);
48   fail_unless (srct == NULL);
49 }
50
51 END_TEST
52 /* threaded link/unlink */
53 /* use globals */
54     GstPad * src, *sink;
55
56 void
57 thread_link_unlink (gpointer data)
58 {
59   THREAD_START ();
60
61   while (THREAD_TEST_RUNNING ()) {
62     gst_pad_link (src, sink);
63     gst_pad_unlink (src, sink);
64     THREAD_SWITCH ();
65   }
66 }
67
68 START_TEST (test_link_unlink_threaded)
69 {
70   GstCaps *caps;
71   int i;
72
73   src = gst_pad_new ("source", GST_PAD_SRC);
74   fail_if (src == NULL);
75   sink = gst_pad_new ("sink", GST_PAD_SINK);
76   fail_if (sink == NULL);
77
78   caps = gst_caps_new_any ();
79   gst_pad_set_caps (src, caps);
80   gst_pad_set_caps (sink, caps);
81
82   MAIN_START_THREADS (5, thread_link_unlink, NULL);
83   for (i = 0; i < 1000; ++i) {
84     gst_pad_is_linked (src);
85     gst_pad_is_linked (sink);
86     THREAD_SWITCH ();
87   }
88   MAIN_STOP_THREADS ();
89 }
90 END_TEST Suite *
91 gst_pad_suite (void)
92 {
93   Suite *s = suite_create ("GstPad");
94   TCase *tc_chain = tcase_create ("general");
95
96   suite_add_tcase (s, tc_chain);
97   tcase_add_test (tc_chain, test_link);
98   tcase_add_test (tc_chain, test_link_unlink_threaded);
99   return s;
100 }
101
102 int
103 main (int argc, char **argv)
104 {
105   int nf;
106
107   Suite *s = gst_pad_suite ();
108   SRunner *sr = srunner_create (s);
109
110   gst_check_init (&argc, &argv);
111
112   srunner_run_all (sr, CK_NORMAL);
113   nf = srunner_ntests_failed (sr);
114   srunner_free (sr);
115
116   return nf;
117 }