summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@samsung.com>2020-04-02 13:59:28 -0400
committerMike Blumenkrantz <zmike@samsung.com>2020-04-08 12:37:46 -0400
commit6231c47319ad269b1a164b3f5df7412d6eb86e56 (patch)
treeb3326d66b43660a185c2adf95beed4ba8bab6b8c
parentdffb64f95d57e337b868525edd27ed073b3bf4d7 (diff)
downloadefl-6231c47319ad269b1a164b3f5df7412d6eb86e56.tar.gz
tests/elm: add hoversel behavior tests
this verifies all smart callbacks for a hoversel to ensure they're triggered as expected Differential Revision: https://phab.enlightenment.org/D11644
-rw-r--r--src/tests/elementary/elm_test_hoversel.c68
1 files changed, 68 insertions, 0 deletions
diff --git a/src/tests/elementary/elm_test_hoversel.c b/src/tests/elementary/elm_test_hoversel.c
index 91de6afee0..0ccc5834da 100644
--- a/src/tests/elementary/elm_test_hoversel.c
+++ b/src/tests/elementary/elm_test_hoversel.c
@@ -6,6 +6,9 @@
#include <Elementary.h>
#include "elm_suite.h"
+#include "elm_priv.h"
+#include "elm_widget_hoversel.h"
+
EFL_START_TEST(elm_hoversel_legacy_type_check)
{
Evas_Object *win, *hoversel;
@@ -41,8 +44,73 @@ EFL_START_TEST(elm_atspi_role_get)
}
EFL_END_TEST
+EFL_START_TEST(elm_test_hoversel_behavior)
+{
+ Eo *hoversel, *win = win_add();
+ unsigned int i;
+ const char *callbacks[] =
+ {
+ "expanded",
+ "clicked",
+ "selected",
+ "item,focused",
+ "item,unfocused",
+ "dismissed",
+ };
+ int count[EINA_C_ARRAY_LENGTH(callbacks)] = {0};
+
+ evas_object_resize(win, 500, 500);
+ hoversel = elm_hoversel_add(win);
+ evas_object_geometry_set(hoversel, 25, 25, 50, 50);
+ elm_hoversel_hover_parent_set(hoversel, win);
+ elm_object_text_set(hoversel, "Vertical");
+ elm_hoversel_item_add(hoversel, "Item 1", NULL, ELM_ICON_NONE, NULL, NULL);
+ elm_hoversel_item_add(hoversel, "Item 2", NULL, ELM_ICON_NONE, NULL, NULL);
+ elm_hoversel_item_add(hoversel, "Item 3", NULL, ELM_ICON_NONE, NULL, NULL);
+ elm_hoversel_item_add(hoversel, "Item 4 - Long Label Here", "close", ELM_ICON_STANDARD, NULL, NULL);
+
+ evas_object_show(win);
+ evas_object_show(hoversel);
+ elm_object_focus_set(hoversel, EINA_TRUE);
+ for (i = 0; i < EINA_C_ARRAY_LENGTH(count); i++)
+ {
+ evas_object_smart_callback_add(hoversel, callbacks[i],
+ (void*)event_callback_single_call_int_data, &count[i]);
+ }
+ evas_object_smart_callback_add(hoversel, "dismissed",
+ (void*)event_callback_that_quits_the_main_loop_when_called, NULL);
+ get_me_to_those_events(win);
+ assert_object_size_eq(hoversel, 50, 50);
+ click_object(hoversel);
+ get_me_to_those_events(win);
+
+ /* expanded */
+ ck_assert_int_eq(count[0], 1);
+ wait_timer(0.6); // from default theme
+ ecore_main_loop_iterate();
+
+ ELM_HOVERSEL_DATA_GET(hoversel, sd);
+ click_object(eina_list_data_get(elm_box_children_get(sd->bx)));
+ get_me_to_those_events(win);
+
+ /* clicked */
+ ck_assert_int_eq(count[1], 1);
+ /* selected */
+ ck_assert_int_eq(count[2], 1);
+ /* item,focused */
+ ck_assert_int_eq(count[3], 1);
+ /* item,focused */
+ ck_assert_int_eq(count[4], 1);
+ ecore_main_loop_begin();
+
+ /* dismissed */
+ ck_assert_int_eq(count[5], 1);
+}
+EFL_END_TEST
+
void elm_test_hoversel(TCase *tc)
{
tcase_add_test(tc, elm_hoversel_legacy_type_check);
tcase_add_test(tc, elm_atspi_role_get);
+ tcase_add_test(tc, elm_test_hoversel_behavior);
}