mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
tests/check/: Some small and basic unit tests for playbin; not very useful yet, but at least a start.
Original commit message from CVS: * tests/check/Makefile.am: * tests/check/elements/.cvsignore: * tests/check/elements/playbin.c: (GST_START_TEST), (gst_red_video_src_uri_get_type), (gst_red_video_src_uri_get_protocols), (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri), (gst_red_video_src_uri_handler_init), (gst_red_video_src_init_type), (gst_red_video_src_base_init), (gst_red_video_src_create), (gst_red_video_src_class_init), (gst_red_video_src_init), (plugin_init), (playbin_suite): Some small and basic unit tests for playbin; not very useful yet, but at least a start.
This commit is contained in:
parent
1e57021ef3
commit
1fff311824
4 changed files with 327 additions and 0 deletions
15
ChangeLog
15
ChangeLog
|
@ -1,3 +1,18 @@
|
|||
2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* tests/check/Makefile.am:
|
||||
* tests/check/elements/.cvsignore:
|
||||
* tests/check/elements/playbin.c: (GST_START_TEST),
|
||||
(gst_red_video_src_uri_get_type),
|
||||
(gst_red_video_src_uri_get_protocols),
|
||||
(gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
|
||||
(gst_red_video_src_uri_handler_init),
|
||||
(gst_red_video_src_init_type), (gst_red_video_src_base_init),
|
||||
(gst_red_video_src_create), (gst_red_video_src_class_init),
|
||||
(gst_red_video_src_init), (plugin_init), (playbin_suite):
|
||||
Some small and basic unit tests for playbin; not very useful yet,
|
||||
but at least a start.
|
||||
|
||||
2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/playback/gstplaybin.c: (setup_sinks):
|
||||
|
|
|
@ -57,6 +57,7 @@ check_PROGRAMS = \
|
|||
elements/gdpdepay \
|
||||
elements/gdppay \
|
||||
elements/multifdsink \
|
||||
elements/playbin \
|
||||
elements/videorate \
|
||||
elements/videotestsrc \
|
||||
elements/volume \
|
||||
|
@ -112,6 +113,9 @@ elements_audioconvert_LDADD = \
|
|||
elements_gdpdepay_LDADD = $(GST_GDP_LIBS) $(LDADD)
|
||||
elements_gdppay_LDADD = $(GST_GDP_LIBS) $(LDADD)
|
||||
|
||||
elements_playbin_LDADD = $(GST_BASE_LIBS) $(LDADD)
|
||||
elements_playbin_CFLAGS = $(GST_BASE_CFLAGS) $(AM_CFLAGS)
|
||||
|
||||
elements_volume_LDADD = \
|
||||
$(GST_BASE_LIBS) \
|
||||
$(LDADD)
|
||||
|
|
1
tests/check/elements/.gitignore
vendored
1
tests/check/elements/.gitignore
vendored
|
@ -13,3 +13,4 @@ volume
|
|||
vorbisdec
|
||||
ffmpegcolorspace
|
||||
vorbistag
|
||||
playbin
|
||||
|
|
307
tests/check/elements/playbin.c
Normal file
307
tests/check/elements/playbin.c
Normal file
|
@ -0,0 +1,307 @@
|
|||
/* GStreamer unit tests for playbin
|
||||
*
|
||||
* Copyright (C) 2006 Tim-Philipp Müller <tim centricular net>
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#include <gst/check/gstcheck.h>
|
||||
#include <gst/base/gstpushsrc.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#ifndef GST_DISABLE_LOADSAVE_REGISTRY
|
||||
|
||||
/* make sure the audio sink is not touched for video-only streams */
|
||||
GST_START_TEST (test_sink_usage_video_only_stream)
|
||||
{
|
||||
GstElement *playbin, *fakevideosink, *fakeaudiosink;
|
||||
GstState cur_state, pending_state;
|
||||
|
||||
playbin = gst_element_factory_make ("playbin", "playbin");
|
||||
fail_unless (playbin != NULL, "Failed to create playbin element");
|
||||
|
||||
fakevideosink = gst_element_factory_make ("fakesink", "fakevideosink");
|
||||
fail_unless (fakevideosink != NULL, "Failed to create fakevideosink element");
|
||||
|
||||
fakeaudiosink = gst_element_factory_make ("fakesink", "fakeaudiosink");
|
||||
fail_unless (fakeaudiosink != NULL, "Failed to create fakeaudiosink element");
|
||||
|
||||
/* video-only stream, audiosink will error out in null => ready if used */
|
||||
g_object_set (fakeaudiosink, "state-error", 1, NULL);
|
||||
|
||||
g_object_set (playbin, "video-sink", fakevideosink, NULL);
|
||||
g_object_set (playbin, "audio-sink", fakeaudiosink, NULL);
|
||||
|
||||
g_object_set (playbin, "uri", "redvideo://", NULL);
|
||||
|
||||
fail_unless_equals_int (gst_element_set_state (playbin, GST_STATE_READY),
|
||||
GST_STATE_CHANGE_SUCCESS);
|
||||
fail_unless_equals_int (gst_element_set_state (playbin, GST_STATE_PAUSED),
|
||||
GST_STATE_CHANGE_ASYNC);
|
||||
fail_unless_equals_int (gst_element_get_state (playbin, NULL, NULL, -1),
|
||||
GST_STATE_CHANGE_SUCCESS);
|
||||
|
||||
fail_unless_equals_int (gst_element_get_state (fakeaudiosink, &cur_state,
|
||||
&pending_state, 0), GST_STATE_CHANGE_SUCCESS);
|
||||
fail_unless_equals_int (cur_state, GST_STATE_NULL);
|
||||
fail_unless_equals_int (pending_state, GST_STATE_VOID_PENDING);
|
||||
|
||||
gst_element_set_state (playbin, GST_STATE_NULL);
|
||||
gst_object_unref (playbin);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
#if 0
|
||||
/* this tests async error handling when setting up the subbin */
|
||||
GST_START_TEST (test_suburi_error_unknowntype)
|
||||
{
|
||||
GstElement *playbin, *fakesink;
|
||||
|
||||
playbin = gst_element_factory_make ("playbin", "playbin");
|
||||
fail_unless (playbin != NULL, "Failed to create playbin element");
|
||||
|
||||
fakesink = gst_element_factory_make ("fakesink", "fakesink");
|
||||
fail_unless (fakesink != NULL, "Failed to create fakesink element");
|
||||
ASSERT_OBJECT_REFCOUNT (fakesink, "fakesink after creation", 1);
|
||||
|
||||
g_object_set (playbin, "video-sink", fakesink, NULL);
|
||||
|
||||
/* suburi file format unknown: playbin should just ignore the suburi and
|
||||
* preroll normally (if /dev/urandom does not exist, this test should behave
|
||||
* the same as test_suburi_error_invalidfile() */
|
||||
g_object_set (playbin, "uri", "redvideo://", NULL);
|
||||
g_object_set (playbin, "suburi", "file:///dev/urandom", NULL);
|
||||
fail_unless_equals_int (gst_element_set_state (playbin, GST_STATE_READY),
|
||||
GST_STATE_CHANGE_SUCCESS);
|
||||
fail_unless_equals_int (gst_element_set_state (playbin, GST_STATE_PAUSED),
|
||||
GST_STATE_CHANGE_ASYNC);
|
||||
fail_unless_equals_int (gst_element_get_state (playbin, NULL, NULL, -1),
|
||||
GST_STATE_CHANGE_SUCCESS);
|
||||
|
||||
gst_element_set_state (playbin, GST_STATE_NULL);
|
||||
gst_object_unref (playbin);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
#endif
|
||||
|
||||
GST_START_TEST (test_suburi_error_invalidfile)
|
||||
{
|
||||
GstElement *playbin, *fakesink;
|
||||
|
||||
playbin = gst_element_factory_make ("playbin", "playbin");
|
||||
fail_unless (playbin != NULL, "Failed to create playbin element");
|
||||
|
||||
fakesink = gst_element_factory_make ("fakesink", "fakesink");
|
||||
fail_unless (fakesink != NULL, "Failed to create fakesink element");
|
||||
ASSERT_OBJECT_REFCOUNT (fakesink, "fakesink after creation", 1);
|
||||
|
||||
g_object_set (playbin, "video-sink", fakesink, NULL);
|
||||
|
||||
/* suburi file does not exist: playbin should just ignore the suburi and
|
||||
* preroll normally */
|
||||
g_object_set (playbin, "uri", "redvideo://", NULL);
|
||||
g_object_set (playbin, "suburi", "file:///foo/bar/803129999/32x9ax1", NULL);
|
||||
fail_unless_equals_int (gst_element_set_state (playbin, GST_STATE_READY),
|
||||
GST_STATE_CHANGE_SUCCESS);
|
||||
fail_unless_equals_int (gst_element_set_state (playbin, GST_STATE_PAUSED),
|
||||
GST_STATE_CHANGE_ASYNC);
|
||||
fail_unless_equals_int (gst_element_get_state (playbin, NULL, NULL, -1),
|
||||
GST_STATE_CHANGE_SUCCESS);
|
||||
|
||||
gst_element_set_state (playbin, GST_STATE_NULL);
|
||||
gst_object_unref (playbin);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
GST_START_TEST (test_suburi_error_wrongproto)
|
||||
{
|
||||
GstElement *playbin, *fakesink;
|
||||
|
||||
playbin = gst_element_factory_make ("playbin", "playbin");
|
||||
fail_unless (playbin != NULL, "Failed to create playbin element");
|
||||
|
||||
fakesink = gst_element_factory_make ("fakesink", "fakesink");
|
||||
fail_unless (fakesink != NULL, "Failed to create fakesink element");
|
||||
ASSERT_OBJECT_REFCOUNT (fakesink, "fakesink after creation", 1);
|
||||
|
||||
g_object_set (playbin, "video-sink", fakesink, NULL);
|
||||
|
||||
/* wrong protocol for suburi: playbin should just ignore the suburi and
|
||||
* preroll normally */
|
||||
g_object_set (playbin, "uri", "redvideo://", NULL);
|
||||
g_object_set (playbin, "suburi", "nosuchproto://foo.bar:80", NULL);
|
||||
fail_unless_equals_int (gst_element_set_state (playbin, GST_STATE_READY),
|
||||
GST_STATE_CHANGE_SUCCESS);
|
||||
fail_unless_equals_int (gst_element_set_state (playbin, GST_STATE_PAUSED),
|
||||
GST_STATE_CHANGE_ASYNC);
|
||||
fail_unless_equals_int (gst_element_get_state (playbin, NULL, NULL, -1),
|
||||
GST_STATE_CHANGE_SUCCESS);
|
||||
|
||||
gst_element_set_state (playbin, GST_STATE_NULL);
|
||||
gst_object_unref (playbin);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
static guint
|
||||
gst_red_video_src_uri_get_type (void)
|
||||
{
|
||||
return GST_URI_SRC;
|
||||
}
|
||||
static gchar **
|
||||
gst_red_video_src_uri_get_protocols (void)
|
||||
{
|
||||
static gchar *protocols[] = { "redvideo", NULL };
|
||||
|
||||
return protocols;
|
||||
}
|
||||
|
||||
static const gchar *
|
||||
gst_red_video_src_uri_get_uri (GstURIHandler * handler)
|
||||
{
|
||||
return "redvideo://";
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gst_red_video_src_uri_set_uri (GstURIHandler * handler, const gchar * uri)
|
||||
{
|
||||
return (uri != NULL && g_str_has_prefix (uri, "redvideo:"));
|
||||
}
|
||||
|
||||
static void
|
||||
gst_red_video_src_uri_handler_init (gpointer g_iface, gpointer iface_data)
|
||||
{
|
||||
GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
|
||||
|
||||
iface->get_type = gst_red_video_src_uri_get_type;
|
||||
iface->get_protocols = gst_red_video_src_uri_get_protocols;
|
||||
iface->get_uri = gst_red_video_src_uri_get_uri;
|
||||
iface->set_uri = gst_red_video_src_uri_set_uri;
|
||||
}
|
||||
|
||||
static void
|
||||
gst_red_video_src_init_type (GType type)
|
||||
{
|
||||
static const GInterfaceInfo uri_hdlr_info = {
|
||||
gst_red_video_src_uri_handler_init, NULL, NULL
|
||||
};
|
||||
|
||||
g_type_add_interface_static (type, GST_TYPE_URI_HANDLER, &uri_hdlr_info);
|
||||
}
|
||||
|
||||
typedef GstPushSrc GstRedVideoSrc;
|
||||
typedef GstPushSrcClass GstRedVideoSrcClass;
|
||||
|
||||
GST_BOILERPLATE_FULL (GstRedVideoSrc, gst_red_video_src, GstPushSrc,
|
||||
GST_TYPE_PUSH_SRC, gst_red_video_src_init_type);
|
||||
|
||||
static void
|
||||
gst_red_video_src_base_init (gpointer klass)
|
||||
{
|
||||
static const GstElementDetails details =
|
||||
GST_ELEMENT_DETAILS ("Red Video Src", "Source/Video", "yep", "me");
|
||||
static GstStaticPadTemplate src_templ = GST_STATIC_PAD_TEMPLATE ("src",
|
||||
GST_PAD_SRC, GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("video/x-raw-yuv, format=(fourcc)I420")
|
||||
);
|
||||
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
||||
|
||||
gst_element_class_add_pad_template (element_class,
|
||||
gst_static_pad_template_get (&src_templ));
|
||||
gst_element_class_set_details (element_class, &details);
|
||||
}
|
||||
|
||||
static GstFlowReturn
|
||||
gst_red_video_src_create (GstPushSrc * src, GstBuffer ** p_buf)
|
||||
{
|
||||
GstBuffer *buf;
|
||||
GstCaps *caps;
|
||||
guint8 *data;
|
||||
guint w = 64, h = 64;
|
||||
guint size;
|
||||
|
||||
size = w * h * 3 / 2;
|
||||
buf = gst_buffer_new_and_alloc (size);
|
||||
data = GST_BUFFER_DATA (buf);
|
||||
memset (data, 76, w * h);
|
||||
memset (data + (w * h), 85, (w * h) / 4);
|
||||
memset (data + (w * h) + ((w * h) / 4), 255, (w * h) / 4);
|
||||
|
||||
caps = gst_caps_new_simple ("video/x-raw-yuv", "format", GST_TYPE_FOURCC,
|
||||
GST_MAKE_FOURCC ('I', '4', '2', '0'), "width", G_TYPE_INT, w, "height",
|
||||
G_TYPE_INT, h, "framerate", GST_TYPE_FRACTION, 1, 1, NULL);
|
||||
gst_buffer_set_caps (buf, caps);
|
||||
gst_caps_unref (caps);
|
||||
|
||||
*p_buf = buf;
|
||||
return GST_FLOW_OK;
|
||||
}
|
||||
|
||||
static void
|
||||
gst_red_video_src_class_init (GstRedVideoSrcClass * klass)
|
||||
{
|
||||
GstPushSrcClass *pushsrc_class = GST_PUSH_SRC_CLASS (klass);
|
||||
|
||||
pushsrc_class->create = gst_red_video_src_create;
|
||||
}
|
||||
|
||||
static void
|
||||
gst_red_video_src_init (GstRedVideoSrc * src, GstRedVideoSrcClass * klass)
|
||||
{
|
||||
}
|
||||
|
||||
static gboolean
|
||||
plugin_init (GstPlugin * plugin)
|
||||
{
|
||||
if (!gst_element_register (plugin, "redvideosrc", GST_RANK_PRIMARY,
|
||||
gst_red_video_src_get_type ())) {
|
||||
return FALSE;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
GST_PLUGIN_DEFINE_STATIC
|
||||
(GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
"playbin-test-elements",
|
||||
"static elements for the playbin unit test",
|
||||
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|
||||
#endif /* GST_DISABLE_LOADSAVE_REGISTRY */
|
||||
static Suite *playbin_suite (void)
|
||||
{
|
||||
Suite *s = suite_create ("playbin");
|
||||
TCase *tc_chain = tcase_create ("general");
|
||||
|
||||
suite_add_tcase (s, tc_chain);
|
||||
|
||||
#ifndef GST_DISABLE_LOADSAVE_REGISTRY
|
||||
tcase_add_test (tc_chain, test_sink_usage_video_only_stream);
|
||||
tcase_add_test (tc_chain, test_suburi_error_wrongproto);
|
||||
tcase_add_test (tc_chain, test_suburi_error_invalidfile);
|
||||
/* tcase_add_test (tc_chain, test_suburi_error_unknowntype); */
|
||||
#endif
|
||||
|
||||
return s;
|
||||
}
|
||||
|
||||
GST_CHECK_MAIN (playbin);
|
Loading…
Reference in a new issue