From: Linus Svensson Date: Sat, 11 Oct 2014 17:28:21 +0000 (+0200) Subject: tests: Add a test for removing a bus watch X-Git-Tag: 1.6.1~706 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bf8e36a7685a34a878276b5b463645dffebfdba7;p=platform%2Fupstream%2Fgstreamer.git tests: Add a test for removing a bus watch https://bugzilla.gnome.org/show_bug.cgi?id=735195 --- diff --git a/tests/check/gst/gstbus.c b/tests/check/gst/gstbus.c index f7bed46..60c6998 100644 --- a/tests/check/gst/gstbus.c +++ b/tests/check/gst/gstbus.c @@ -286,6 +286,31 @@ GST_START_TEST (test_add_watch_with_custom_context) GST_END_TEST; +static gboolean +dummy_bus_func (GstBus * bus, GstMessage * msg, gpointer user_data) +{ + return TRUE; +} + +GST_START_TEST (test_remove_watch) +{ + test_bus = gst_bus_new (); + + /* removing a non-existing watch should fail */ + fail_if (gst_bus_remove_watch (test_bus)); + + gst_bus_add_watch (test_bus, dummy_bus_func, NULL); + + fail_unless (gst_bus_remove_watch (test_bus)); + + /* now it should fail to remove the watch again */ + fail_if (gst_bus_remove_watch (test_bus)); + + gst_object_unref (test_bus); +} + +GST_END_TEST; + static gint messages_seen; static void @@ -718,6 +743,7 @@ gst_bus_suite (void) tcase_add_test (tc_chain, test_watch_with_poll); tcase_add_test (tc_chain, test_watch_with_custom_context); tcase_add_test (tc_chain, test_add_watch_with_custom_context); + tcase_add_test (tc_chain, test_remove_watch); tcase_add_test (tc_chain, test_timed_pop); tcase_add_test (tc_chain, test_timed_pop_thread); tcase_add_test (tc_chain, test_timed_pop_filtered);