efl/src/tests/elementary/elm_test_popup.c

49 lines
967 B
C
Raw Normal View History

#ifdef HAVE_CONFIG_H
# include "elementary_config.h"
#endif
#define EFL_ACCESS_BETA
#include <Elementary.h>
#include "elm_suite.h"
EFL_START_TEST (elm_popup_legacy_type_check)
{
Evas_Object *win, *popup;
const char *type;
win = elm_win_add(NULL, "popup", ELM_WIN_BASIC);
popup = elm_popup_add(win);
type = elm_object_widget_type_get(popup);
ck_assert(type != NULL);
ck_assert(!strcmp(type, "Elm_Popup"));
type = evas_object_type_get(popup);
ck_assert(type != NULL);
ck_assert(!strcmp(type, "elm_popup"));
}
EFL_END_TEST
EFL_START_TEST (elm_atspi_role_get)
{
Evas_Object *win, *popup;
Efl_Access_Role role;
win = elm_win_add(NULL, "popup", ELM_WIN_BASIC);
popup = elm_popup_add(win);
role = efl_access_role_get(popup);
ck_assert(role == EFL_ACCESS_ROLE_DIALOG);
}
EFL_END_TEST
void elm_test_popup(TCase *tc)
{
tcase_add_test(tc, elm_popup_legacy_type_check);
tcase_add_test(tc, elm_atspi_role_get);
}