remove
[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     gst_element_set_state (element, GST_STATE_PAUSED);
46     gst_element_set_state (element, GST_STATE_READY);
47     gst_element_set_state (element, GST_STATE_NULL);
48     gst_element_set_state (element, GST_STATE_PAUSED);
49     gst_element_set_state (element, GST_STATE_READY);
50     gst_element_set_state (element, GST_STATE_PLAYING);
51     gst_element_set_state (element, GST_STATE_PAUSED);
52     gst_element_set_state (element, GST_STATE_NULL);
53     gst_object_unref (GST_OBJECT (element));
54   }
55   gst_task_cleanup_all ();
56 }
57
58 GST_END_TEST;
59
60 Suite *
61 states_suite (void)
62 {
63   Suite *s = suite_create ("states");
64   TCase *tc_chain = tcase_create ("general");
65
66   suite_add_tcase (s, tc_chain);
67   tcase_add_test (tc_chain, test_state_changes);
68
69   return s;
70 }
71
72 int
73 main (int argc, char **argv)
74 {
75   int nf;
76
77   Suite *s = states_suite ();
78   SRunner *sr = srunner_create (s);
79
80   gst_check_init (&argc, &argv);
81
82   srunner_run_all (sr, CK_NORMAL);
83   nf = srunner_ntests_failed (sr);
84   srunner_free (sr);
85
86   return nf;
87 }