check/generic/states.c: Cleanup can be done at the end.
[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_pool_feature_list (GST_TYPE_ELEMENT_FACTORY);
33
34   for (f = features; f; f = f->next) {
35     GstPluginFeature *feature = f->data;
36     const gchar *name = gst_plugin_feature_get_name (feature);
37
38     GST_DEBUG ("testing element %s", name);
39     element = gst_element_factory_make (name, name);
40
41     gst_element_set_state (element, GST_STATE_READY);
42     gst_element_set_state (element, GST_STATE_PAUSED);
43     gst_element_set_state (element, GST_STATE_PLAYING);
44     gst_element_set_state (element, GST_STATE_PAUSED);
45     gst_element_set_state (element, GST_STATE_READY);
46     gst_element_set_state (element, GST_STATE_NULL);
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_PLAYING);
50     gst_element_set_state (element, GST_STATE_PAUSED);
51     gst_element_set_state (element, GST_STATE_NULL);
52     gst_object_unref (GST_OBJECT (element));
53   }
54   gst_task_cleanup_all ();
55 }
56
57 GST_END_TEST;
58
59 Suite *
60 states_suite (void)
61 {
62   Suite *s = suite_create ("states");
63   TCase *tc_chain = tcase_create ("general");
64
65   suite_add_tcase (s, tc_chain);
66   tcase_add_test (tc_chain, test_state_changes);
67
68   return s;
69 }
70
71 int
72 main (int argc, char **argv)
73 {
74   int nf;
75
76   Suite *s = states_suite ();
77   SRunner *sr = srunner_create (s);
78
79   gst_check_init (&argc, &argv);
80
81   srunner_run_all (sr, CK_NORMAL);
82   nf = srunner_ntests_failed (sr);
83   srunner_free (sr);
84
85   return nf;
86 }