expand tabs
[platform/upstream/gstreamer.git] / tests / check / elements / videotestsrc.c
1 /* GStreamer
2  *
3  * unit test for videotestsrc
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 GList *buffers = NULL;
28 gboolean have_eos = FALSE;
29
30 /* For ease of programming we use globals to keep refs for our floating
31  * src and sink pads we create; otherwise we always have to do get_pad,
32  * get_peer, and then remove references in every test function */
33 GstPad *mysinkpad;
34
35
36 #define CAPS_TEMPLATE_STRING            \
37     "video/x-raw-yuv, "                 \
38     "format = (fourcc) Y422, "          \
39     "width = (int) [ 1,  MAX ], "       \
40     "height = (int) [ 1,  MAX ], "      \
41     "framerate = (fraction) [ 0/1, MAX ]"
42
43 static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
44     GST_PAD_SINK,
45     GST_PAD_ALWAYS,
46     GST_STATIC_CAPS (CAPS_TEMPLATE_STRING)
47     );
48
49 GstElement *
50 setup_videotestsrc ()
51 {
52   GstElement *videotestsrc;
53
54   GST_DEBUG ("setup_videotestsrc");
55   videotestsrc = gst_check_setup_element ("videotestsrc");
56   mysinkpad = gst_check_setup_sink_pad (videotestsrc, &sinktemplate, NULL);
57   gst_pad_set_active (mysinkpad, TRUE);
58
59   return videotestsrc;
60 }
61
62 void
63 cleanup_videotestsrc (GstElement * videotestsrc)
64 {
65   GST_DEBUG ("cleanup_videotestsrc");
66
67   g_list_foreach (buffers, (GFunc) gst_mini_object_unref, NULL);
68   g_list_free (buffers);
69   buffers = NULL;
70
71   gst_check_teardown_sink_pad (videotestsrc);
72   gst_check_teardown_element (videotestsrc);
73 }
74
75 GST_START_TEST (test_all_patterns)
76 {
77   GstElement *videotestsrc;
78   GObjectClass *oclass;
79   GParamSpec *property;
80   GEnumValue *values;
81   guint j = 0;
82
83   videotestsrc = setup_videotestsrc ();
84   oclass = G_OBJECT_GET_CLASS (videotestsrc);
85   property = g_object_class_find_property (oclass, "pattern");
86   fail_unless (G_IS_PARAM_SPEC_ENUM (property));
87   values = G_ENUM_CLASS (g_type_class_ref (property->value_type))->values;
88
89
90   while (values[j].value_name) {
91     GST_DEBUG_OBJECT (videotestsrc, "testing pattern %s", values[j].value_name);
92
93     fail_unless (gst_element_set_state (videotestsrc,
94             GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
95         "could not set to playing");
96
97     while (g_list_length (buffers) < 10);
98
99     gst_element_set_state (videotestsrc, GST_STATE_READY);
100
101     g_list_foreach (buffers, (GFunc) gst_mini_object_unref, NULL);
102     g_list_free (buffers);
103     buffers = NULL;
104     ++j;
105   }
106
107   /* cleanup */
108   cleanup_videotestsrc (videotestsrc);
109 }
110
111 GST_END_TEST;
112
113 /* FIXME:
114  * add tests for every colorspace */
115
116 Suite *
117 videotestsrc_suite (void)
118 {
119   Suite *s = suite_create ("videotestsrc");
120   TCase *tc_chain = tcase_create ("general");
121
122   suite_add_tcase (s, tc_chain);
123   tcase_add_test (tc_chain, test_all_patterns);
124
125   return s;
126 }
127
128 int
129 main (int argc, char **argv)
130 {
131   int nf;
132
133   Suite *s = videotestsrc_suite ();
134   SRunner *sr = srunner_create (s);
135
136   gst_check_init (&argc, &argv);
137
138   srunner_run_all (sr, CK_NORMAL);
139   nf = srunner_ntests_failed (sr);
140   srunner_free (sr);
141
142   return nf;
143 }