mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
tests: taglist: add basic test for taglists serialization
Make sure it works with empty taglists
This commit is contained in:
parent
b0b8908159
commit
85d23d19b7
2 changed files with 59 additions and 0 deletions
|
@ -128,6 +128,7 @@ check_PROGRAMS = \
|
||||||
gst/gstclock \
|
gst/gstclock \
|
||||||
gst/gststructure \
|
gst/gststructure \
|
||||||
gst/gsttag \
|
gst/gsttag \
|
||||||
|
gst/gsttaglist \
|
||||||
gst/gsttagsetter \
|
gst/gsttagsetter \
|
||||||
gst/gsttask \
|
gst/gsttask \
|
||||||
gst/gsttoc \
|
gst/gsttoc \
|
||||||
|
|
58
tests/check/gst/gsttaglist.c
Normal file
58
tests/check/gst/gsttaglist.c
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
/* GStreamer
|
||||||
|
*
|
||||||
|
* Copyright (C) 2014 Samsung Electronics. All rights reserved.
|
||||||
|
* Author: Thiago Santos <ts.santos@sisa.samsung.com>
|
||||||
|
*
|
||||||
|
* gsttaglist.c: Unit tests for GstTaglist
|
||||||
|
*
|
||||||
|
* 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., 51 Franklin St, Fifth Floor,
|
||||||
|
* Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include <gst/gst.h>
|
||||||
|
#include <gst/check/gstcheck.h>
|
||||||
|
|
||||||
|
|
||||||
|
GST_START_TEST (test_no_tags_string_serialization)
|
||||||
|
{
|
||||||
|
GstTagList *taglist, *taglist2;
|
||||||
|
gchar *str;
|
||||||
|
|
||||||
|
taglist = gst_tag_list_new_empty ();
|
||||||
|
str = gst_tag_list_to_string (taglist);
|
||||||
|
taglist2 = gst_tag_list_new_from_string (str);
|
||||||
|
fail_if (taglist2 == NULL);
|
||||||
|
fail_unless (gst_tag_list_is_equal (taglist, taglist2));
|
||||||
|
|
||||||
|
gst_tag_list_unref (taglist);
|
||||||
|
gst_tag_list_unref (taglist2);
|
||||||
|
g_free (str);
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_END_TEST;
|
||||||
|
|
||||||
|
static Suite *
|
||||||
|
gst_tag_list_suite (void)
|
||||||
|
{
|
||||||
|
Suite *s = suite_create ("GstTaglist");
|
||||||
|
TCase *tc_chain = tcase_create ("general");
|
||||||
|
|
||||||
|
suite_add_tcase (s, tc_chain);
|
||||||
|
tcase_add_test (tc_chain, test_no_tags_string_serialization);
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_CHECK_MAIN (gst_tag_list);
|
Loading…
Reference in a new issue