check/generic/states.c: Add a sleep to ensure elements have a chance to start their...
[platform/upstream/gstreamer.git] / tests / check / generic / states.c
1 /* GStreamer
2  *
3  * unit test for state changes on all elements
4  *
5  * Copyright (C) <2005> Thomas Vander Stichele <thomas at apestaart dot org>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #include <unistd.h>
24
25 #include <gst/check/gstcheck.h>
26
27 GST_START_TEST (test_state_changes)
28 {
29   GstElement *element;
30   GList *features, *f;
31
32   features = gst_registry_get_feature_list (gst_registry_get_default (),
33       GST_TYPE_ELEMENT_FACTORY);
34
35   for (f = features; f; f = f->next) {
36     GstPluginFeature *feature = f->data;
37     const gchar *name = gst_plugin_feature_get_name (feature);
38
39     GST_DEBUG ("testing element %s", name);
40     element = gst_element_factory_make (name, name);
41
42     gst_element_set_state (element, GST_STATE_READY);
43     gst_element_set_state (element, GST_STATE_PAUSED);
44     gst_element_set_state (element, GST_STATE_PLAYING);
45     /* Sleep to give any pad tasks time to start */
46     g_usleep (0.2 * G_USEC_PER_SEC);
47     gst_element_set_state (element, GST_STATE_PAUSED);
48     gst_element_set_state (element, GST_STATE_READY);
49     gst_element_set_state (element, GST_STATE_NULL);
50     gst_element_set_state (element, GST_STATE_PAUSED);
51     gst_element_set_state (element, GST_STATE_READY);
52     gst_element_set_state (element, GST_STATE_PLAYING);
53     gst_element_set_state (element, GST_STATE_PAUSED);
54     gst_element_set_state (element, GST_STATE_NULL);
55     gst_object_unref (GST_OBJECT (element));
56   }
57   gst_task_cleanup_all ();
58 }
59
60 GST_END_TEST;
61
62 Suite *
63 states_suite (void)
64 {
65   Suite *s = suite_create ("states");
66   TCase *tc_chain = tcase_create ("general");
67
68   /* Use a long timeout, as we test all elements and take
69    * at least 0.2 seconds each */
70   tcase_set_timeout (tc_chain, 120);
71
72   suite_add_tcase (s, tc_chain);
73   tcase_add_test (tc_chain, test_state_changes);
74
75   return s;
76 }
77
78 int
79 main (int argc, char **argv)
80 {
81   int nf;
82
83   Suite *s = states_suite ();
84   SRunner *sr = srunner_create (s);
85
86   gst_check_init (&argc, &argv);
87
88   srunner_run_all (sr, CK_NORMAL);
89   nf = srunner_ntests_failed (sr);
90   srunner_free (sr);
91
92   return nf;
93 }