efl/src/tests/eio/eio_model_test_file.c

158 lines
3.9 KiB
C

//Compile with:
// gcc -o emodel_test_file emodel_test_file.c `pkg-config --cflags --libs emodel`
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <Eo.h>
#include <Eio.h>
#include <Ecore.h>
#include <Efl.h>
#include <eio_model.h>
#include <stdio.h>
#include <check.h>
#define EFL_MODEL_TEST_FILENAME_PATH "/tmp"
#define EFL_MODEL_MAX_TEST_CHILDS 16
struct reqs_t {
/* property change */
int changed_is_dir;
int changed_is_lnk;
int changed_size;
int changed_mtime;
/* properties list */
int proplist_filename;
int proplist_path;
int proplist_mtime;
int proplist_is_dir;
int proplist_is_lnk;
int proplist_size;
/* misc tests for data or propeties */
int properties;
int children;
int child_add;
int child_del;
/* load status */
int properties_loaded;
};
static struct reqs_t reqs;
static Ecore_Event_Handler *handler;
static Eina_Bool
exit_func(void *data EINA_UNUSED, int ev_type EINA_UNUSED, void *ev)
{
Ecore_Event_Signal_Exit *e;
e = (Ecore_Event_Signal_Exit *)ev;
if (e->interrupt) fprintf(stdout, "Exit: interrupt\n");
else if (e->quit) fprintf(stdout, "Exit: quit\n");
else if (e->terminate) fprintf(stdout, "Exit: terminate\n");
ecore_main_loop_quit();
return ECORE_CALLBACK_CANCEL;
}
static void
promise_then_count(Eo* obj EINA_UNUSED, int *total)
{
ck_assert_ptr_ne(total, NULL);
printf("efl_model_loaded count %d\n", *total); fflush(stdout);
ecore_main_loop_quit();
}
static void
promise_then_accessor(Eo* obj EINA_UNUSED, Eina_Accessor **accessor)
{
ck_assert_ptr_ne(accessor, NULL);
printf("efl_model_loaded accessor %p\n", *accessor); fflush(stdout);
Eo* child;
int i = 0;
EINA_ACCESSOR_FOREACH(*accessor, i, child)
{
printf("efl_model_loaded child: %d pointer %p\n", i, child);
}
ecore_main_loop_quit();
}
static void
promise_then_value(void *user EINA_UNUSED, Eina_Value *value)
{
ck_assert_ptr_ne(value, NULL);
char *str = eina_value_to_string(value);
ck_assert_ptr_ne(str, NULL);
printf("efl_model_loaded property: %s\n", str);
free(str);
ecore_main_loop_quit();
}
static void
error_promise_then(void* data, Eina_Error const* error)
{
ck_abort_msg(0, "Error Promise cb");
ecore_main_loop_quit();
}
START_TEST(eio_model_test_test_file)
{
Eo *filemodel = NULL;
Eina_Array *properties_list = NULL;
unsigned int i;
memset(&reqs, 0, sizeof(struct reqs_t));
fail_if(!eina_init(), "ERROR: Cannot init Eina!\n");
fail_if(!ecore_init(), "ERROR: Cannot init Ecore!\n");
fail_if(!eo_init(), "ERROR: Cannot init EO!\n");
fail_if(!eio_init(), "ERROR: Cannot init EIO!\n");
filemodel = eo_add(EIO_MODEL_CLASS, NULL, eio_model_path_set(eo_self, EFL_MODEL_TEST_FILENAME_PATH));
fail_if(!filemodel, "ERROR: Cannot init model!\n");
handler = ecore_event_handler_add(ECORE_EVENT_SIGNAL_EXIT, exit_func, NULL);
Eina_Promise *promise;
efl_model_property_get(filemodel, "filename", &promise);
eina_promise_then(promise, &promise_then_value, &error_promise_then, NULL);
ecore_main_loop_begin();
efl_model_property_get(filemodel, "size", &promise);
eina_promise_then(promise, &promise_then_value, &error_promise_then, NULL);
ecore_main_loop_begin();
efl_model_property_get(filemodel, "mtime", &promise);
eina_promise_then(promise, &promise_then_value, &error_promise_then, NULL);
ecore_main_loop_begin();
efl_model_children_slice_get(filemodel, 0, 0, &promise);
eina_promise_then(promise, &promise_then_accessor, &error_promise_then, NULL);
ecore_main_loop_begin();
efl_model_children_count_get(filemodel, &promise);
eina_promise_then(promise, &promise_then_count, &error_promise_then, NULL);
ecore_main_loop_begin();
eo_unref(filemodel);
eio_shutdown();
ecore_shutdown();
eina_shutdown();
}
END_TEST
void
eio_model_test_file(TCase *tc)
{
tcase_add_test(tc, eio_model_test_test_file);
}