efl/src/tests/ecore/ecore_test_ecore_imf.c

111 lines
2.5 KiB
C

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <Ecore_IMF.h>
#include "ecore_suite.h"
EFL_START_TEST(ecore_test_ecore_imf_init)
{
ecore_imf_init();
ecore_imf_shutdown();
}
EFL_END_TEST
static const char *built_modules[] = {
#ifdef BUILD_ECORE_IMF_XIM
"xim",
#endif
#ifdef BUILD_ECORE_IMF_IBUS
"ibus",
#endif
#ifdef BUILD_ECORE_IMF_SCIM
/* The scim module needs some configuration on the host or it might just block
* the whole test suite when it tries to load the module. Disabling it as we
* do not have control over the host.
"scim", */
#endif
NULL
};
static Eina_Bool
_find_list(const Eina_List *lst, const char *item)
{
const Eina_List *n;
const char *s;
/* these modules (currently) require x11 to run */
if (eina_streq(item, "xim") || eina_streq(item, "ibus"))
{
if (!getenv("DISPLAY")) return EINA_TRUE;
}
EINA_LIST_FOREACH(lst, n, s)
{
if (strcmp(s, item) == 0)
return EINA_TRUE;
}
return EINA_FALSE;
}
EFL_START_TEST(ecore_test_ecore_imf_modules)
{
Eina_List *modules;
const char **itr;
char *failure = NULL;
putenv("ECORE_IMF_MODULE=");
ecore_imf_init();
modules = ecore_imf_context_available_ids_get();
for (itr = built_modules; *itr != NULL; itr++)
{
Eina_Bool found = _find_list(modules, *itr);
if (!found) failure = eina_strdup(*itr);
if (failure) break;
}
eina_list_free(modules);
ecore_imf_shutdown();
ck_assert_msg(!failure, "compiled imf module not found: %s", failure);
}
EFL_END_TEST
EFL_START_TEST(ecore_test_ecore_imf_modules_load)
{
const char **itr;
char *failure = NULL;
putenv("ECORE_IMF_MODULE=");
ecore_imf_init();
for (itr = built_modules; *itr != NULL; itr++)
{
Ecore_IMF_Context *ctx;
/* these modules (currently) require x11 to run */
if (eina_streq(*itr, "xim") || eina_streq(*itr, "ibus"))
{
if (!getenv("DISPLAY")) continue;
}
ctx = ecore_imf_context_add(*itr);
if (!ctx)
{
failure = eina_strdup(*itr);
break;
}
ecore_imf_context_del(ctx);
}
ecore_imf_shutdown();
ck_assert_msg(!failure, "could not add imf context: %s", failure);
}
EFL_END_TEST
void ecore_test_ecore_imf(TCase *tc)
{
tcase_add_test(tc, ecore_test_ecore_imf_init);
tcase_add_test(tc, ecore_test_ecore_imf_modules);
tcase_add_test(tc, ecore_test_ecore_imf_modules_load);
}