e20ccabec19c2c7e8949c6a807c4fccda8186c85
[framework/uifw/elementary.git] / TC / elm_ts / gengrid / utc_UIFW_elm_gengrid_selected_items_get_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         if (y == (x1)) \
9                 { \
10                         tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
11                         tet_result(TET_FAIL); \
12                         return; \
13                 } \
14 }
15
16 // For checking the result of the negative test case.
17 #define TET_CHECK_FAIL(x1, y...) \
18 { \
19         if (y != (x1)) \
20                 { \
21                         tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
22                         tet_result(TET_FAIL); \
23                         return; \
24                 } \
25 }
26
27 Evas_Object *main_win, *main_bg;
28 Evas_Object *test_win, *test_bg;
29 Evas_Object *test_eo = NULL;
30 Elm_Gengrid_Item_Class gic;
31 Elm_Gengrid_Item *item;
32
33 void _elm_precondition(void);
34 static void _win_del(void *data, Evas_Object *obj, void *event_info);
35
36 static void _win_del(void *data, Evas_Object *obj, void *event_info)
37 {
38         elm_exit();
39 }
40
41 void _elm_precondition(void)
42 {
43         elm_init(0, NULL);
44
45         main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
46         elm_win_title_set(main_win, "Elementary Unit Test Suite");
47         evas_object_smart_callback_add(main_win, "delete,request", _win_del, NULL);
48         main_bg = elm_bg_add(main_win);
49         evas_object_size_hint_weight_set(main_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
50
51         evas_object_resize(main_win, 320, 480);
52         evas_object_show(main_win);
53 }
54
55 static void startup(void);
56 static void cleanup(void);
57
58 void (*tet_startup)(void) = startup;
59 void (*tet_cleanup)(void) = cleanup;
60
61 static void utc_UIFW_elm_gengrid_selected_items_get_func_01(void);
62 static void utc_UIFW_elm_gengrid_selected_items_get_func_02(void);
63
64 enum {
65         POSITIVE_TC_IDX = 0x01,
66         NEGATIVE_TC_IDX,
67 };
68
69 struct tet_testlist tet_testlist[] = {
70         { utc_UIFW_elm_gengrid_selected_items_get_func_01, POSITIVE_TC_IDX },
71         { utc_UIFW_elm_gengrid_selected_items_get_func_02, NEGATIVE_TC_IDX },
72         { NULL, 0 }
73 };
74
75 static void startup(void)
76 {
77         tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
78
79         _elm_precondition();
80
81         test_win = elm_win_add(NULL, "Page Control", ELM_WIN_BASIC);
82         elm_win_title_set(test_win, "Page Control");
83         elm_win_autodel_set(test_win, 1);
84
85         test_bg = elm_bg_add(test_win);
86         elm_win_resize_object_add(test_win, test_bg);
87         evas_object_size_hint_weight_set(test_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
88         evas_object_show(test_bg);
89
90         evas_object_resize(test_win, 480, 800);
91         evas_object_show(test_win);
92
93         test_eo = elm_gengrid_add(test_win);
94         gic.item_style = "default_grid";
95         gic.func.label_get = NULL;
96         gic.func.icon_get = NULL;
97
98         item = elm_gengrid_item_append(test_eo, &gic, test_bg, NULL, NULL);
99         elm_gengrid_item_selected_set(item, EINA_TRUE);
100
101         tet_infoline("[[ TET_MSG ]]:: Completing startup");
102 }
103
104 static void cleanup(void)
105 {
106         if ( NULL != main_win ) {
107                 main_win = NULL;
108         }
109
110         if ( NULL != main_bg ) {
111                 main_bg = NULL;
112         }
113
114         if ( NULL != test_win ) {
115                 test_win = NULL;
116         }
117
118         if ( NULL != test_bg ) {
119                 test_bg = NULL;
120         }
121
122         if ( NULL != test_eo ) {
123                 test_eo = NULL;
124         }
125
126         elm_exit();
127
128         tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
129 }
130
131 static void utc_UIFW_elm_gengrid_selected_items_get_func_01(void)
132 {
133         const Eina_List *list = NULL;
134
135         list = elm_gengrid_selected_items_get(test_eo);
136
137         TET_CHECK_PASS(NULL, list);
138
139         tet_result(TET_PASS);
140         tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, elm_gengrid_selected_items_get");
141 }
142
143 static void utc_UIFW_elm_gengrid_selected_items_get_func_02(void)
144 {
145         const Eina_List *list = NULL;
146
147         list = elm_gengrid_selected_items_get(NULL);
148
149         TET_CHECK_FAIL(NULL, list);
150
151         tet_result(TET_PASS);
152         tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, elm_gengrid_selected_items_get");
153 }