gst/gsturi.c: Don't leak plugin feature.

Original commit message from CVS:
* gst/gsturi.c: (gst_element_make_from_uri):
Don't leak plugin feature.
* tests/check/Makefile.am:
* tests/check/gst/.cvsignore:
* tests/check/gst/gsturi.c: (GST_START_TEST), (gst_uri_suite):
Add brain-dead unit test.
This commit is contained in:
Tim-Philipp Müller 2007-05-11 14:46:10 +00:00
parent ef1a5d21e5
commit 7f1acfb0c8
5 changed files with 68 additions and 1 deletions

View file

@ -1,3 +1,13 @@
2007-05-11 Tim-Philipp Müller <tim at centricular dot net>
* gst/gsturi.c: (gst_element_make_from_uri):
Don't leak plugin feature.
* tests/check/Makefile.am:
* tests/check/gst/.cvsignore:
* tests/check/gst/gsturi.c: (GST_START_TEST), (gst_uri_suite):
Add brain-dead unit test.
2007-05-11 Tim-Philipp Müller <tim at centricular dot net> 2007-05-11 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Jeroen Wouters <woutersj at gmail com> Patch by: Jeroen Wouters <woutersj at gmail com>

View file

@ -593,7 +593,7 @@ gst_element_make_from_uri (const GstURIType type, const gchar * uri,
} }
walk = walk->next; walk = walk->next;
} }
g_list_free (possibilities); gst_plugin_feature_list_free (possibilities);
GST_LOG_OBJECT (ret, "created %s for URL '%s'", GST_LOG_OBJECT (ret, "created %s for URL '%s'",
type == GST_URI_SINK ? "sink" : "source", uri); type == GST_URI_SINK ? "sink" : "source", uri);

View file

@ -52,6 +52,7 @@ REGISTRY_CHECKS = \
gst/gstplugin \ gst/gstplugin \
gst/gstquery \ gst/gstquery \
gst/gstregistry \ gst/gstregistry \
gst/gsturi \
gst/gstutils \ gst/gstutils \
generic/sinks \ generic/sinks \
elements/fakesink \ elements/fakesink \

View file

@ -22,6 +22,7 @@ gststructure
gstsystemclock gstsystemclock
gsttag gsttag
gsttagsetter gsttagsetter
gsturi
gstutils gstutils
gstvalue gstvalue
gstquery gstquery

55
tests/check/gst/gsturi.c Normal file
View file

@ -0,0 +1,55 @@
/* GStreamer unit tests for GstURI
*
* Copyright (C) 2007 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.
*/
#include <gst/check/gstcheck.h>
GST_START_TEST (test_protocol_case)
{
GstElement *element;
element = gst_element_make_from_uri (GST_URI_SRC, "file:///foo/bar", NULL);
/* no element? probably no registry, bail out */
if (element == NULL)
return;
gst_object_unref (element);
element = gst_element_make_from_uri (GST_URI_SRC, "FILE:///foo/bar", NULL);
fail_unless (element != NULL,
"Got source for 'file://' URI but not for 'FILE://' URI");
gst_object_unref (element);
}
GST_END_TEST;
static Suite *
gst_uri_suite (void)
{
Suite *s = suite_create ("GstURI");
TCase *tc_chain = tcase_create ("uri");
tcase_set_timeout (tc_chain, 20);
suite_add_tcase (s, tc_chain);
tcase_add_test (tc_chain, test_protocol_case);
return s;
}
GST_CHECK_MAIN (gst_uri);