summaryrefslogtreecommitdiff
path: root/src/tests/elementary/elm_test_fileselector.c
blob: 50703ae37a4007ec6f4d1f148ab500a926029d00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#ifdef HAVE_CONFIG_H
# include "elementary_config.h"
#endif

#define EFL_ACCESS_OBJECT_BETA
#include <Elementary.h>
#include "elm_suite.h"


EFL_START_TEST(elm_fileselector_legacy_type_check)
{
   Evas_Object *win, *fileselector;
   const char *type;

   win = win_add(NULL, "fileselector", ELM_WIN_BASIC);

   fileselector = elm_fileselector_add(win);

   type = elm_object_widget_type_get(fileselector);
   ck_assert(type != NULL);
   ck_assert(!strcmp(type, "Elm_Fileselector"));

   type = evas_object_type_get(fileselector);
   ck_assert(type != NULL);
   ck_assert(!strcmp(type, "elm_fileselector"));

}
EFL_END_TEST

EFL_START_TEST(elm_atspi_role_get)
{
   Evas_Object *win, *fileselector;
   Efl_Access_Role role;

   win = win_add(NULL, "fileselector", ELM_WIN_BASIC);

   fileselector = elm_fileselector_add(win);
   role = efl_access_object_role_get(fileselector);

   ck_assert(role == EFL_ACCESS_ROLE_FILE_CHOOSER);

}
EFL_END_TEST

static Eina_Bool
timer_expired_cb(void *user_data)
{
   Eina_Bool *did_timeout = user_data;

   *did_timeout = EINA_TRUE;
   ecore_main_loop_quit();

   return EINA_TRUE;
}

static Eina_Bool
idler_done_cb(void *user_data)
{
   Eina_Bool *done = user_data;

   if (*done) ecore_main_loop_quit();

   return EINA_TRUE;
}

static Eina_Bool
fileselector_test_helper_wait_flag(double in, Eina_Bool *done)
{
   Eina_Bool did_timeout = EINA_FALSE;
   Ecore_Timer *tm;
   Ecore_Idle_Enterer *idle;

   tm = ecore_timer_add(in, timer_expired_cb, &did_timeout);
   idle = ecore_idle_enterer_add(idler_done_cb, done);

   ecore_main_loop_begin();

   ecore_idle_enterer_del(idle);
   ecore_timer_del(tm);

   return !did_timeout;
}

static void
_ready_cb(void *data, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)
{
    Eina_Bool *ret = data;
    *ret = EINA_TRUE;

    ecore_main_loop_quit();
}


EFL_START_TEST(elm_fileselector_selected)
{
   Evas_Object *win, *fileselector;
   Eina_Tmpstr *tmp_path;
   Eina_Stringshare *exist, *no_exist;
   FILE *fp;
   char *path;
   Eina_Bool open, selected;

   if (!eina_file_mkdtemp("elm_test-XXXXXX", &tmp_path))
     {
        /* can not test */
        ck_assert(EINA_FALSE);
        return;
     }

   path = strdup(tmp_path);
   eina_tmpstr_del(tmp_path);

   exist = eina_stringshare_printf("%s/exist", path);
   no_exist = eina_stringshare_printf("%s/no_exist", path);
   fp = fopen(exist, "w");
   fclose(fp);

   win = win_add(NULL, "fileselector", ELM_WIN_BASIC);

   fileselector = elm_fileselector_add(win);
   evas_object_smart_callback_add(fileselector, "directory,open", _ready_cb, &open);

   ck_assert(!elm_fileselector_selected_set(fileselector, no_exist));

   open = EINA_FALSE;
   ck_assert(elm_fileselector_selected_set(fileselector, path));
   ck_assert(fileselector_test_helper_wait_flag(10, &open));

   ck_assert_str_eq(elm_fileselector_selected_get(fileselector), path);

   evas_object_smart_callback_del(fileselector, "directory,open", _ready_cb);
   evas_object_smart_callback_add(fileselector, "selected", _ready_cb, &selected);

   selected = EINA_FALSE;
   ck_assert(elm_fileselector_selected_set(fileselector, exist));
   ck_assert(fileselector_test_helper_wait_flag(10, &selected));
   ck_assert(selected == EINA_TRUE);

   ck_assert_str_eq(elm_fileselector_selected_get(fileselector), exist);

   eina_stringshare_del(exist);
   eina_stringshare_del(no_exist);
   free(path);

}
EFL_END_TEST

void elm_test_fileselector(TCase *tc)
{
   tcase_add_test(tc, elm_fileselector_legacy_type_check);
   tcase_add_test(tc, elm_atspi_role_get);
   tcase_add_test(tc, elm_fileselector_selected);
}