mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
e040bb2dbe
Original commit message from CVS: 2005-09-02 Andy Wingo <wingo@pobox.com> * gst/gstelement.h (GstState): Renamed from GstElementState, changed to be a normal enum instead of flags. (GstStateChangeReturn): Renamed from GstElementStateReturn, names munged to be GST_STATE_CHANGE_*. (GST_STATE_CHANGE): Renamed from GST_STATE_TRANSITION, updated to work with the new state representation. (GstStateChange): New enumeration of possible state transitions. Replaces GST_STATE_FOO_TO_BAR with GST_STATE_CHANGE_FOO_TO_BAR. (GstElementClass::change_state): Pass the GstStateChange along as an argument. Helps language bindings, so they don't have to use tricky lock-needing macros like GST_STATE_CHANGE (). * scripts/update-states (file): New script. Run it on a file to update it for state naming and API changes. Updates files in place. * All files updated for the new API.
237 lines
5.4 KiB
C
237 lines
5.4 KiB
C
/* GStreamer
|
|
*
|
|
* unit test for fakesrc
|
|
*
|
|
* Copyright (C) <2005> Thomas Vander Stichele <thomas at apestaart dot org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <gst/check/gstcheck.h>
|
|
|
|
gboolean have_eos = FALSE;
|
|
|
|
GstPad *mysinkpad;
|
|
|
|
static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
|
GST_PAD_SINK,
|
|
GST_PAD_ALWAYS,
|
|
GST_STATIC_CAPS_ANY);
|
|
|
|
gboolean
|
|
event_func (GstPad * pad, GstEvent * event)
|
|
{
|
|
if (GST_EVENT_TYPE (event) == GST_EVENT_EOS) {
|
|
/* we take the lock here because it's good practice to so, even though
|
|
* no buffers will be pushed anymore anyway */
|
|
GST_STREAM_LOCK (pad);
|
|
have_eos = TRUE;
|
|
GST_STREAM_UNLOCK (pad);
|
|
gst_event_unref (event);
|
|
return TRUE;
|
|
}
|
|
|
|
gst_event_unref (event);
|
|
return FALSE;
|
|
}
|
|
|
|
GstElement *
|
|
setup_fakesrc ()
|
|
{
|
|
GstElement *fakesrc;
|
|
|
|
GST_DEBUG ("setup_fakesrc");
|
|
fakesrc = gst_check_setup_element ("fakesrc");
|
|
mysinkpad = gst_check_setup_sink_pad (fakesrc, &sinktemplate, NULL);
|
|
gst_pad_set_event_function (mysinkpad, event_func);
|
|
gst_pad_set_active (mysinkpad, TRUE);
|
|
return fakesrc;
|
|
}
|
|
|
|
void
|
|
cleanup_fakesrc (GstElement * fakesrc)
|
|
{
|
|
gst_check_teardown_sink_pad (fakesrc);
|
|
gst_check_teardown_element (fakesrc);
|
|
}
|
|
|
|
GST_START_TEST (test_num_buffers)
|
|
{
|
|
GstElement *src;
|
|
|
|
src = setup_fakesrc ();
|
|
g_object_set (G_OBJECT (src), "num-buffers", 3, NULL);
|
|
fail_unless (gst_element_set_state (src,
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
"could not set to playing");
|
|
|
|
while (!have_eos) {
|
|
g_usleep (1000);
|
|
}
|
|
|
|
fail_unless (g_list_length (buffers) == 3);
|
|
g_list_foreach (buffers, (GFunc) gst_mini_object_unref, NULL);
|
|
g_list_free (buffers);
|
|
|
|
/* cleanup */
|
|
cleanup_fakesrc (src);
|
|
}
|
|
|
|
GST_END_TEST;
|
|
|
|
GST_START_TEST (test_sizetype_empty)
|
|
{
|
|
GstElement *src;
|
|
GList *l;
|
|
|
|
src = setup_fakesrc ();
|
|
|
|
g_object_set (G_OBJECT (src), "sizetype", 1, NULL);
|
|
g_object_set (G_OBJECT (src), "num-buffers", 100, NULL);
|
|
|
|
fail_unless (gst_element_set_state (src,
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
"could not set to playing");
|
|
|
|
while (!have_eos) {
|
|
g_usleep (1000);
|
|
}
|
|
|
|
fail_unless (g_list_length (buffers) == 100);
|
|
l = buffers;
|
|
while (l) {
|
|
GstBuffer *buf = l->data;
|
|
|
|
fail_unless (GST_BUFFER_SIZE (buf) == 0);
|
|
l = l->next;
|
|
}
|
|
g_list_foreach (buffers, (GFunc) gst_mini_object_unref, NULL);
|
|
g_list_free (buffers);
|
|
|
|
/* cleanup */
|
|
cleanup_fakesrc (src);
|
|
}
|
|
|
|
GST_END_TEST;
|
|
|
|
GST_START_TEST (test_sizetype_fixed)
|
|
{
|
|
GstElement *src;
|
|
GList *l;
|
|
|
|
src = setup_fakesrc ();
|
|
|
|
g_object_set (G_OBJECT (src), "sizetype", 2, NULL);
|
|
g_object_set (G_OBJECT (src), "sizemax", 8192, NULL);
|
|
g_object_set (G_OBJECT (src), "num-buffers", 100, NULL);
|
|
|
|
fail_unless (gst_element_set_state (src,
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
"could not set to playing");
|
|
|
|
while (!have_eos) {
|
|
g_usleep (1000);
|
|
}
|
|
|
|
fail_unless (g_list_length (buffers) == 100);
|
|
l = buffers;
|
|
while (l) {
|
|
GstBuffer *buf = l->data;
|
|
|
|
fail_unless (GST_BUFFER_SIZE (buf) == 8192);
|
|
l = l->next;
|
|
}
|
|
g_list_foreach (buffers, (GFunc) gst_mini_object_unref, NULL);
|
|
g_list_free (buffers);
|
|
|
|
/* cleanup */
|
|
cleanup_fakesrc (src);
|
|
}
|
|
|
|
GST_END_TEST;
|
|
|
|
GST_START_TEST (test_sizetype_random)
|
|
{
|
|
GstElement *src;
|
|
GList *l;
|
|
|
|
src = setup_fakesrc ();
|
|
|
|
g_object_set (G_OBJECT (src), "sizetype", 3, NULL);
|
|
g_object_set (G_OBJECT (src), "sizemin", 4096, NULL);
|
|
g_object_set (G_OBJECT (src), "sizemax", 8192, NULL);
|
|
g_object_set (G_OBJECT (src), "num-buffers", 100, NULL);
|
|
|
|
fail_unless (gst_element_set_state (src,
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
"could not set to playing");
|
|
|
|
while (!have_eos) {
|
|
g_usleep (1000);
|
|
}
|
|
|
|
fail_unless (g_list_length (buffers) == 100);
|
|
l = buffers;
|
|
while (l) {
|
|
GstBuffer *buf = l->data;
|
|
|
|
fail_if (GST_BUFFER_SIZE (buf) > 8192);
|
|
fail_if (GST_BUFFER_SIZE (buf) < 4096);
|
|
l = l->next;
|
|
}
|
|
g_list_foreach (buffers, (GFunc) gst_mini_object_unref, NULL);
|
|
g_list_free (buffers);
|
|
|
|
/* cleanup */
|
|
cleanup_fakesrc (src);
|
|
}
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
Suite *
|
|
fakesrc_suite (void)
|
|
{
|
|
Suite *s = suite_create ("fakesrc");
|
|
TCase *tc_chain = tcase_create ("general");
|
|
|
|
suite_add_tcase (s, tc_chain);
|
|
tcase_add_test (tc_chain, test_num_buffers);
|
|
tcase_add_test (tc_chain, test_sizetype_empty);
|
|
tcase_add_test (tc_chain, test_sizetype_fixed);
|
|
tcase_add_test (tc_chain, test_sizetype_random);
|
|
|
|
return s;
|
|
}
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
int nf;
|
|
|
|
Suite *s = fakesrc_suite ();
|
|
SRunner *sr = srunner_create (s);
|
|
|
|
gst_check_init (&argc, &argv);
|
|
|
|
srunner_run_all (sr, CK_NORMAL);
|
|
nf = srunner_ntests_failed (sr);
|
|
srunner_free (sr);
|
|
|
|
return nf;
|
|
}
|