mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-04 22:48:49 +00:00
tests/check/gst/gststructure.c: Push coverage from 59.04% to 70.00%
Original commit message from CVS: * tests/check/gst/gststructure.c: (GST_START_TEST), (gst_structure_suite): Push coverage from 59.04% to 70.00%
This commit is contained in:
parent
5edf2634af
commit
cceab6ee95
1 changed files with 56 additions and 1 deletions
|
@ -20,6 +20,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include <gst/gststructure.h>
|
||||||
#include <gst/check/gstcheck.h>
|
#include <gst/check/gstcheck.h>
|
||||||
|
|
||||||
|
|
||||||
|
@ -129,9 +130,42 @@ GST_START_TEST (test_structure_new)
|
||||||
GstStructure *s;
|
GstStructure *s;
|
||||||
GError *e;
|
GError *e;
|
||||||
GQuark domain;
|
GQuark domain;
|
||||||
|
gboolean bool;
|
||||||
|
gint num, den;
|
||||||
|
GstClockTime clocktime;
|
||||||
|
guint32 fourcc;
|
||||||
|
|
||||||
s = gst_structure_new ("name", "key", G_TYPE_STRING, "value", NULL);
|
s = gst_structure_new ("name",
|
||||||
|
"key", G_TYPE_STRING, "value",
|
||||||
|
"bool", G_TYPE_BOOLEAN, TRUE,
|
||||||
|
"fraction", GST_TYPE_FRACTION, 1, 5,
|
||||||
|
"clocktime", GST_TYPE_CLOCK_TIME, GST_CLOCK_TIME_NONE,
|
||||||
|
"fourcc", GST_TYPE_FOURCC, GST_MAKE_FOURCC ('f', 'o', 'u', 'r'), NULL);
|
||||||
|
|
||||||
|
fail_unless (gst_structure_get_field_type (s, "unknown") == G_TYPE_INVALID);
|
||||||
|
/* test setting a different name */
|
||||||
|
gst_structure_set_name (s, "newname");
|
||||||
fail_unless (strcmp (gst_structure_get_string (s, "key"), "value") == 0);
|
fail_unless (strcmp (gst_structure_get_string (s, "key"), "value") == 0);
|
||||||
|
fail_unless (gst_structure_has_field (s, "key"));
|
||||||
|
fail_unless_equals_int (gst_structure_n_fields (s), 5);
|
||||||
|
/* test removing a field */
|
||||||
|
gst_structure_remove_field (s, "key");
|
||||||
|
fail_if (gst_structure_get_string (s, "key"));
|
||||||
|
fail_if (gst_structure_has_field (s, "key"));
|
||||||
|
fail_unless_equals_int (gst_structure_n_fields (s), 4);
|
||||||
|
|
||||||
|
fail_unless (gst_structure_get_boolean (s, "bool", &bool));
|
||||||
|
fail_unless (bool);
|
||||||
|
|
||||||
|
fail_unless (gst_structure_get_fraction (s, "fraction", &num, &den));
|
||||||
|
fail_unless_equals_int (num, 1);
|
||||||
|
fail_unless_equals_int (den, 5);
|
||||||
|
|
||||||
|
fail_unless (gst_structure_get_clock_time (s, "clocktime", &clocktime));
|
||||||
|
fail_unless_equals_uint64 (clocktime, GST_CLOCK_TIME_NONE);
|
||||||
|
|
||||||
|
fail_unless (gst_structure_get_fourcc (s, "fourcc", &fourcc));
|
||||||
|
|
||||||
gst_structure_free (s);
|
gst_structure_free (s);
|
||||||
|
|
||||||
domain = g_quark_from_string ("test");
|
domain = g_quark_from_string ("test");
|
||||||
|
@ -143,6 +177,26 @@ GST_START_TEST (test_structure_new)
|
||||||
|
|
||||||
GST_END_TEST;
|
GST_END_TEST;
|
||||||
|
|
||||||
|
GST_START_TEST (test_fixate)
|
||||||
|
{
|
||||||
|
GstStructure *s;
|
||||||
|
|
||||||
|
s = gst_structure_new ("name",
|
||||||
|
"int", G_TYPE_INT, 5,
|
||||||
|
"intrange", GST_TYPE_INT_RANGE, 5, 10,
|
||||||
|
"intrange2", GST_TYPE_INT_RANGE, 5, 10, NULL);
|
||||||
|
|
||||||
|
fail_if (gst_structure_fixate_field_nearest_int (s, "int", 5));
|
||||||
|
fail_unless (gst_structure_fixate_field_nearest_int (s, "intrange", 5));
|
||||||
|
fail_if (gst_structure_fixate_field_nearest_int (s, "intrange", 5));
|
||||||
|
fail_unless (gst_structure_fixate_field_nearest_int (s, "intrange2", 15));
|
||||||
|
fail_if (gst_structure_fixate_field_nearest_int (s, "intrange2", 15));
|
||||||
|
gst_structure_free (s);
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_END_TEST;
|
||||||
|
|
||||||
|
|
||||||
Suite *
|
Suite *
|
||||||
gst_structure_suite (void)
|
gst_structure_suite (void)
|
||||||
{
|
{
|
||||||
|
@ -154,6 +208,7 @@ gst_structure_suite (void)
|
||||||
tcase_add_test (tc_chain, test_from_string);
|
tcase_add_test (tc_chain, test_from_string);
|
||||||
tcase_add_test (tc_chain, test_complete_structure);
|
tcase_add_test (tc_chain, test_complete_structure);
|
||||||
tcase_add_test (tc_chain, test_structure_new);
|
tcase_add_test (tc_chain, test_structure_new);
|
||||||
|
tcase_add_test (tc_chain, test_fixate);
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue