mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
tests: bin: add more tests for suppressed flags
Add tests to confirm flags are persisted even after removing elements that have those suppressed flags
This commit is contained in:
parent
586b34436e
commit
3c617f1ca1
1 changed files with 30 additions and 0 deletions
|
@ -1695,6 +1695,35 @@ GST_START_TEST (test_suppressed_flags)
|
|||
|
||||
GST_END_TEST;
|
||||
|
||||
|
||||
#define _GST_CHECK_BIN_SUPPRESSED_FLAGS_REMOVAL(suppressed_flags) \
|
||||
G_STMT_START { \
|
||||
GstBin *bin = GST_BIN (gst_bin_new ("test-bin")); \
|
||||
GstElement *element = gst_element_factory_make ("identity", "test-i"); \
|
||||
GST_OBJECT_FLAG_SET (bin, suppressed_flags); \
|
||||
gst_bin_set_suppressed_flags (bin, suppressed_flags); \
|
||||
GST_OBJECT_FLAG_SET (element, suppressed_flags); \
|
||||
fail_unless ((suppressed_flags & GST_OBJECT_FLAGS (bin)) \
|
||||
== suppressed_flags); \
|
||||
gst_bin_add (bin, element); \
|
||||
fail_unless ((suppressed_flags & GST_OBJECT_FLAGS (bin)) \
|
||||
== suppressed_flags); \
|
||||
gst_bin_remove (bin, element); \
|
||||
fail_unless ((suppressed_flags & GST_OBJECT_FLAGS (bin)) \
|
||||
== suppressed_flags); \
|
||||
gst_object_unref (bin); \
|
||||
} G_STMT_END
|
||||
|
||||
GST_START_TEST (test_suppressed_flags_when_removing)
|
||||
{
|
||||
_GST_CHECK_BIN_SUPPRESSED_FLAGS_REMOVAL (GST_ELEMENT_FLAG_SOURCE);
|
||||
_GST_CHECK_BIN_SUPPRESSED_FLAGS_REMOVAL (GST_ELEMENT_FLAG_SINK);
|
||||
_GST_CHECK_BIN_SUPPRESSED_FLAGS_REMOVAL (GST_ELEMENT_FLAG_REQUIRE_CLOCK);
|
||||
_GST_CHECK_BIN_SUPPRESSED_FLAGS_REMOVAL (GST_ELEMENT_FLAG_PROVIDE_CLOCK);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
static Suite *
|
||||
gst_bin_suite (void)
|
||||
{
|
||||
|
@ -1726,6 +1755,7 @@ gst_bin_suite (void)
|
|||
tcase_add_test (tc_chain, test_duration_unknown_overrides);
|
||||
tcase_add_test (tc_chain, test_deep_added_removed);
|
||||
tcase_add_test (tc_chain, test_suppressed_flags);
|
||||
tcase_add_test (tc_chain, test_suppressed_flags_when_removing);
|
||||
|
||||
/* fails on OSX build bot for some reason, and is a bit silly anyway */
|
||||
if (0)
|
||||
|
|
Loading…
Reference in a new issue