mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
id3demux: add unit test file for unsynced id3 tags
This commit is contained in:
parent
a85d7b7059
commit
0ff1b18cbb
2 changed files with 31 additions and 0 deletions
|
@ -201,6 +201,36 @@ GST_START_TEST (test_wcop)
|
||||||
|
|
||||||
GST_END_TEST;
|
GST_END_TEST;
|
||||||
|
|
||||||
|
static void
|
||||||
|
check_unsync (const GstTagList * tags, const gchar * file)
|
||||||
|
{
|
||||||
|
gchar *album = NULL;
|
||||||
|
gchar *title = NULL;
|
||||||
|
gchar *artist = NULL;
|
||||||
|
|
||||||
|
fail_unless (gst_tag_list_get_string (tags, GST_TAG_TITLE, &title));
|
||||||
|
fail_unless (title != NULL);
|
||||||
|
fail_unless_equals_string (title, "ARTIST"); /* sic */
|
||||||
|
g_free (title);
|
||||||
|
|
||||||
|
fail_unless (gst_tag_list_get_string (tags, GST_TAG_ALBUM, &album));
|
||||||
|
fail_unless (album != NULL);
|
||||||
|
fail_unless_equals_string (album, "Album");
|
||||||
|
g_free (album);
|
||||||
|
|
||||||
|
fail_unless (gst_tag_list_get_string (tags, GST_TAG_ARTIST, &artist));
|
||||||
|
fail_unless (artist != NULL);
|
||||||
|
fail_unless_equals_string (artist, "藝人");
|
||||||
|
g_free (artist);
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_START_TEST (test_unsync)
|
||||||
|
{
|
||||||
|
run_check_for_file ("id3-577468-unsynced-tag.tag", check_unsync);
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_END_TEST;
|
||||||
|
|
||||||
static Suite *
|
static Suite *
|
||||||
id3demux_suite (void)
|
id3demux_suite (void)
|
||||||
{
|
{
|
||||||
|
@ -210,6 +240,7 @@ id3demux_suite (void)
|
||||||
suite_add_tcase (s, tc_chain);
|
suite_add_tcase (s, tc_chain);
|
||||||
tcase_add_test (tc_chain, test_tdat_tyer);
|
tcase_add_test (tc_chain, test_tdat_tyer);
|
||||||
tcase_add_test (tc_chain, test_wcop);
|
tcase_add_test (tc_chain, test_wcop);
|
||||||
|
tcase_add_test (tc_chain, test_unsync);
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
BIN
tests/files/id3-577468-unsynced-tag.tag
Normal file
BIN
tests/files/id3-577468-unsynced-tag.tag
Normal file
Binary file not shown.
Loading…
Reference in a new issue