From 390b719e96155576cd5ddfa899fe5b135b51826c Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Sun, 4 Apr 2010 18:00:23 -0300 Subject: [PATCH] tests: tag: Refactor a bit Refactor xmp tags unit tests and remove an useless assertion. This will make easier to add unit tests to serialize/deserialize taglists. --- tests/check/libs/tag.c | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/tests/check/libs/tag.c b/tests/check/libs/tag.c index afed1a9005..9ed46eb6e9 100644 --- a/tests/check/libs/tag.c +++ b/tests/check/libs/tag.c @@ -853,11 +853,8 @@ GST_START_TEST (test_xmp_parsing) GST_END_TEST; static void -do_xmp_tag_serialization_deserialization (const gchar * gsttag, GValue * value) +tag_list_equals (GstTagList * taglist, GstTagList * taglist2) { - GstTagList *taglist = gst_tag_list_new (); - GstTagList *taglist2; - GstBuffer *buf; const gchar *name_sent, *name_recv; const GValue *value_sent, *value_recv; gboolean found; @@ -866,13 +863,6 @@ do_xmp_tag_serialization_deserialization (const gchar * gsttag, GValue * value) gint n_sent; gint i, j; - fail_if (FALSE); - - gst_tag_list_add_value (taglist, GST_TAG_MERGE_REPLACE, gsttag, value); - - buf = gst_tag_list_to_xmp_buffer (taglist, TRUE); - taglist2 = gst_tag_list_from_xmp_buffer (buf); - /* verify tags */ fail_unless (taglist2 != NULL); n_recv = gst_structure_n_fields (taglist2); @@ -898,12 +888,6 @@ do_xmp_tag_serialization_deserialization (const gchar * gsttag, GValue * value) g_free (vs); g_free (vr); } - if (strcmp (name_sent, GST_TAG_GEO_LOCATION_ELEVATION) == 0) { - gdouble a, b; - a = g_value_get_double (value_sent); - b = g_value_get_double (value_recv); - GST_WARNING ("A=%lf B=%lf", a, b); - } fail_unless (comparison == GST_VALUE_EQUAL, "tag item %s has been received with different type or value", name_sent); @@ -913,6 +897,21 @@ do_xmp_tag_serialization_deserialization (const gchar * gsttag, GValue * value) } fail_unless (found, "tag item %s is lost", name_sent); } +} + +static void +do_xmp_tag_serialization_deserialization (const gchar * gsttag, GValue * value) +{ + GstTagList *taglist = gst_tag_list_new (); + GstTagList *taglist2; + GstBuffer *buf; + + gst_tag_list_add_value (taglist, GST_TAG_MERGE_REPLACE, gsttag, value); + + buf = gst_tag_list_to_xmp_buffer (taglist, TRUE); + taglist2 = gst_tag_list_from_xmp_buffer (buf); + + tag_list_equals (taglist, taglist2); gst_buffer_unref (buf); gst_tag_list_free (taglist);