tests/check/: use the new macro
[platform/upstream/gstreamer.git] / tests / check / pipelines / cleanup.c
1 /* GStreamer
2  * Copyright (C) <2005> Thomas Vander Stichele <thomas at apestaart dot org>
3  *
4  * cleanup.c: Unit test for cleanup of pipelines
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
23 #include <gst/check/gstcheck.h>
24
25
26 static GstElement *
27 setup_pipeline (gchar * pipe_descr)
28 {
29   GstElement *pipeline;
30
31   pipeline = gst_parse_launch (pipe_descr, NULL);
32   g_return_val_if_fail (GST_IS_PIPELINE (pipeline), NULL);
33   return pipeline;
34 }
35
36 /* events is a mask of expected events. tevent is the expected terminal event.
37    the poll call will time out after half a second.
38  */
39 static void
40 run_pipeline (GstElement * pipeline, gchar * descr,
41     GstMessageType events, GstMessageType tevent)
42 {
43   GstBus *bus;
44   GstMessageType revent;
45
46   bus = gst_element_get_bus (pipeline);
47   g_assert (bus);
48   gst_element_set_state (pipeline, GST_STATE_PLAYING);
49
50   while (1) {
51     GstMessage *message = gst_bus_poll (bus, GST_MESSAGE_ANY, GST_SECOND / 2);
52
53     if (message) {
54       revent = GST_MESSAGE_TYPE (message);
55       gst_message_unref (message);
56     } else {
57       revent = GST_MESSAGE_UNKNOWN;
58     }
59
60     if (revent == tevent) {
61       break;
62     } else if (revent == GST_MESSAGE_UNKNOWN) {
63       g_critical ("Unexpected timeout in gst_bus_poll, looking for %d: %s",
64           tevent, descr);
65       break;
66     } else if (revent & events) {
67       continue;
68     }
69     g_critical ("Unexpected message received of type %d, looking for %d: %s",
70         revent, tevent, descr);
71   }
72
73   gst_element_set_state (pipeline, GST_STATE_NULL);
74   gst_object_unref (pipeline);
75   gst_object_unref (bus);
76 }
77
78 GST_START_TEST (test_pipeline_unref)
79 {
80   gchar *s;
81   GstElement *pipeline, *src, *sink;
82
83   s = "fakesrc name=src num-buffers=20 ! fakesink name=sink";
84   pipeline = setup_pipeline (s);
85   /* get_by_name takes a ref */
86   src = gst_bin_get_by_name (GST_BIN (pipeline), "src");
87   fail_if (src == NULL);
88   sink = gst_bin_get_by_name (GST_BIN (pipeline), "sink");
89   fail_if (sink == NULL);
90
91   run_pipeline (pipeline, s, GST_MESSAGE_NEW_CLOCK | GST_MESSAGE_STATE_CHANGED,
92       GST_MESSAGE_EOS);
93   while (GST_OBJECT_REFCOUNT_VALUE (src) > 1)
94     THREAD_SWITCH ();
95   ASSERT_OBJECT_REFCOUNT (src, "src", 1);
96   ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
97   gst_object_unref (src);
98   gst_object_unref (sink);
99 }
100
101 GST_END_TEST;
102
103 Suite *
104 cleanup_suite (void)
105 {
106   Suite *s = suite_create ("Pipeline cleanup");
107   TCase *tc_chain = tcase_create ("linear");
108
109   /* time out after 20s, not the default 3 */
110   tcase_set_timeout (tc_chain, 20);
111
112   suite_add_tcase (s, tc_chain);
113   tcase_add_test (tc_chain, test_pipeline_unref);
114   return s;
115 }
116
117 GST_CHECK_MAIN (cleanup);