tests/elm: add hoversel behavior tests

this verifies all smart callbacks for a hoversel to ensure they're triggered
as expected

Reviewed-by: Stefan Schmidt <stefan@datenfreihafen.org>
Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D11644
This commit is contained in:
Mike Blumenkrantz 2020-04-02 13:59:28 -04:00 committed by Stefan Schmidt
parent 272c3d9a66
commit 034d42855b
1 changed files with 68 additions and 0 deletions

View File

@ -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);
}