tizen 2.3 release
[framework/uifw/elementary.git] / TC / elm_ts / index / utc_UIFW_elm_index_item_append_relative_func.c
1 #include <tet_api.h>
2 #include <Elementary.h>
3
4 // Definitions
5 // For checking the result of the positive test case.
6 #define TET_CHECK_PASS(x1, y...) \
7 { \
8         Evas_Object *err = y; \
9         if (err == (x1)) \
10                 { \
11                         tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
12                         tet_result(TET_FAIL); \
13                         return; \
14                 } \
15 }
16
17 // For checking the result of the negative test case.
18 #define TET_CHECK_FAIL(x1, y...) \
19 { \
20         Evas_Object *err = y; \
21         if (err != (x1)) \
22                 { \
23                         tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
24                         tet_result(TET_FAIL); \
25                         return; \
26                 } \
27 }
28
29
30 Evas_Object *main_win;
31 static Elm_Genlist_Item_Class itci;
32
33 static void startup(void);
34 static void cleanup(void);
35
36 void (*tet_startup)(void) = startup;
37 void (*tet_cleanup)(void) = cleanup;
38
39 static void utc_UIFW_elm_index_item_append_relative_func_01(void);
40 static void utc_UIFW_elm_index_item_append_relative_func_02(void);
41
42 enum {
43         POSITIVE_TC_IDX = 0x01,
44         NEGATIVE_TC_IDX,
45 };
46
47 struct tet_testlist tet_testlist[] = {
48         { utc_UIFW_elm_index_item_append_relative_func_01, POSITIVE_TC_IDX },
49         { utc_UIFW_elm_index_item_append_relative_func_02, NEGATIVE_TC_IDX },
50         { NULL, 0 }
51 };
52
53 static void startup(void)
54 {
55         tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
56         elm_init(0, NULL);
57         main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
58         evas_object_show(main_win);
59 }
60
61 static void cleanup(void)
62 {
63         if ( NULL != main_win ) {
64                 evas_object_del(main_win);
65                 main_win = NULL;
66         }
67         elm_shutdown();
68         tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
69 }
70
71 char *gli_label_get(void *data, Evas_Object *obj, const char *part)
72 {
73    char buf[256];
74    int j = (int)data;
75    snprintf(buf, sizeof(buf), "%c%c",
76             'A' + ((j >> 4) & 0xf),
77             'a' + ((j     ) & 0xf)
78             );
79    return strdup(buf);
80 }
81 /**
82  * @brief Positive test case of elm_index_item_append_relative()
83  */
84 static void utc_UIFW_elm_index_item_append_relative_func_01(void)
85 {
86         Evas_Object *idx = NULL;
87         Elm_Object_Item *it = NULL, *it_gl=NULL;
88         Evas_Object *gl = NULL;
89         Elm_Object_Item *it_idx = NULL;
90         int i = 0, j = 0;
91         const char  *letter = NULL;
92         gl = elm_genlist_add(main_win);
93         idx= elm_index_add(main_win);
94         evas_object_show(gl);
95         evas_object_show(idx);
96         itci.item_style     = "default";
97         itci.func.text_get = gli_label_get;
98         itci.func.content_get  = NULL;
99         itci.func.state_get = NULL;
100         itci.func.del       = NULL;
101         for (i = 0; i <=40; i++) {
102                 it = elm_genlist_item_append(gl, &itci,(void *)j, NULL, ELM_GENLIST_ITEM_NONE, NULL,NULL);
103                 if ((j & 0xf) == 0) {
104                         char buf[32];
105                         snprintf(buf, sizeof(buf), "%c", 'A' + ((j >> 3) & 0xf));
106                         elm_index_item_append(idx, buf, it);
107                 }
108                 if(i==0) it_gl=it;
109                 j += 2;
110         }
111         it = elm_genlist_item_append(gl, &itci,(void *)j, NULL, ELM_GENLIST_ITEM_NONE, NULL,NULL);
112         char buf[32];
113         snprintf(buf, sizeof(buf), "%c", 'A' + ((j >> 3) & 0xf));
114         elm_index_item_append_relative(idx, buf, it, it_gl);
115         elm_index_item_go(idx, 0);
116         it_idx = elm_index_item_find(idx,(void*)it_gl);
117         letter = elm_index_item_letter_get(it_idx);
118
119         if((strcmp(letter,"A")&&(strcmp(buf,"K")))) {
120                 tet_infoline("elm_index_item_append_relative() failed in positive test case");
121                 tet_result(TET_FAIL);
122                 return;
123         }
124         tet_result(TET_PASS);
125 }
126
127 /**
128  * @brief Negative test case of ug_init elm_index_item_append_relative()
129  */
130 static void utc_UIFW_elm_index_item_append_relative_func_02(void)
131 {
132         Evas_Object *idx = NULL;
133         Elm_Object_Item *it = NULL, *it_gl=NULL;
134         Evas_Object *gl = NULL;
135         Elm_Object_Item *it_idx = NULL;
136         int i = 0, j = 0;
137         gl = elm_genlist_add(main_win);
138         idx= elm_index_add(main_win);
139         evas_object_show(gl);
140         evas_object_show(idx);
141     itci.item_style     = "default";
142     itci.func.text_get = gli_label_get;
143     itci.func.content_get  = NULL;
144     itci.func.state_get = NULL;
145     itci.func.del       = NULL;
146     for (i = 0; i <=40; i++) {
147       it = elm_genlist_item_append(gl, &itci,(void *)j, NULL, ELM_GENLIST_ITEM_NONE, NULL,NULL);
148       if ((j & 0xf) == 0) {
149                  char buf[32];
150          snprintf(buf, sizeof(buf), "%c", 'A' + ((j >> 3) & 0xf));
151          elm_index_item_append(idx, buf, it);
152         }
153         if(i==0)
154          it_gl=it;
155         j += 2;
156     }
157         it = elm_genlist_item_append(gl, &itci,(void *)j, NULL, ELM_GENLIST_ITEM_NONE, NULL,NULL);
158           char buf[32];
159         snprintf(buf, sizeof(buf), "%c", 'A' + ((j >> 3) & 0xf));
160         elm_index_item_append_relative(NULL, buf, it, it_gl);
161                 elm_index_item_go(idx, 0);
162         it_idx = elm_index_item_find(idx,(void*)it);
163         if(it_idx) {
164                         tet_infoline("elm_index_item_append_relative() failed in negative test case");
165                         tet_result(TET_FAIL);
166                 return;
167          }
168           tet_result(TET_PASS);
169 }