diff options
author | Ted Gould <ted@gould.cx> | 2012-01-14 10:30:22 +0100 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-01-14 10:30:22 +0100 |
commit | 7586398a88487db955504cce8d348a65f95d4c22 (patch) | |
tree | 5a1664db0211edc160e688c4b2e004570ad96131 /tests/test-loader.c | |
parent | b7c8a634f190e176b1d3b201ff08d861ba5e265b (diff) | |
download | libayatana-indicator-7586398a88487db955504cce8d348a65f95d4c22.tar.gz libayatana-indicator-7586398a88487db955504cce8d348a65f95d4c22.tar.bz2 libayatana-indicator-7586398a88487db955504cce8d348a65f95d4c22.zip |
Adding a test functioin for the entry func demmy indicator
Diffstat (limited to 'tests/test-loader.c')
-rw-r--r-- | tests/test-loader.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/test-loader.c b/tests/test-loader.c index ac9d4e5..3adce3b 100644 --- a/tests/test-loader.c +++ b/tests/test-loader.c @@ -23,6 +23,34 @@ License along with this library. If not, see #include <gtk/gtk.h> #include "libindicator/indicator-object.h" +#include "dummy-indicator-entry-func.h" + +void +test_loader_entry_funcs (void) +{ + IndicatorObject * object = indicator_object_new_from_file(BUILD_DIR "/.libs/libdummy-indicator-entry-func.so"); + g_assert(object != NULL); + + DummyIndicatorEntryFunc * entryfunc = (DummyIndicatorEntryFunc *)(object); + + entryfunc->entry_activate_called = FALSE; + entryfunc->entry_activate_window_called = FALSE; + entryfunc->entry_close_called = FALSE; + + indicator_object_entry_activate(object, NULL, 0); + g_assert(entryfunc->entry_activate_called); + + indicator_object_entry_activate_window(object, NULL, 0, 0); + g_assert(entryfunc->entry_activate_window_called); + + indicator_object_entry_close(object, NULL, 0); + g_assert(entryfunc->entry_close_called); + + g_object_unref(object); + + return; +} + void destroy_cb (gpointer data, GObject * object); void @@ -174,6 +202,7 @@ test_loader_creation_deletion_suite (void) g_test_add_func ("/libindicator/loader/dummy/simple_accessors", test_loader_filename_dummy_simple_accessors); g_test_add_func ("/libindicator/loader/dummy/simple_location", test_loader_filename_dummy_simple_location); g_test_add_func ("/libindicator/loader/dummy/signaler", test_loader_filename_dummy_signaler); + g_test_add_func ("/libindicator/loader/dummy/entry_funcs", test_loader_entry_funcs); return; } |