Initialize Tizen 2.3
[framework/uifw/elementary.git] / mobile / TC / elm_ts / gengrid / utc_UIFW_elm_gengrid_selected_item_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_Object_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_item_get_func_01(void);
62 static void utc_UIFW_elm_gengrid_selected_item_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_item_get_func_01, POSITIVE_TC_IDX },
71         { utc_UIFW_elm_gengrid_selected_item_get_func_02, NEGATIVE_TC_IDX },
72         { NULL, 0 }
73
74 };
75
76 static void startup(void)
77 {
78         tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
79
80         _elm_precondition();
81
82         test_win = elm_win_add(NULL, "Page Control", ELM_WIN_BASIC);
83         elm_win_title_set(test_win, "Page Control");
84         elm_win_autodel_set(test_win, 1);
85
86         test_bg = elm_bg_add(test_win);
87         elm_win_resize_object_add(test_win, test_bg);
88         evas_object_size_hint_weight_set(test_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
89         evas_object_show(test_bg);
90
91         evas_object_resize(test_win, 480, 800);
92         evas_object_show(test_win);
93
94         test_eo = elm_gengrid_add(test_win);
95         gic.item_style = "default_grid";
96         gic.func.text_get = NULL;
97         gic.func.content_get = NULL;
98
99         item = elm_gengrid_item_append(test_eo, &gic, test_bg, NULL, NULL);
100         elm_gengrid_item_selected_set(item, EINA_TRUE);
101
102         tet_infoline("[[ TET_MSG ]]:: Completing startup");
103 }
104
105 static void cleanup(void)
106 {
107         if ( NULL != main_win ) {
108                 main_win = NULL;
109         }
110
111         if ( NULL != main_bg ) {
112                 main_bg = NULL;
113         }
114
115         if ( NULL != test_win ) {
116                 test_win = NULL;
117         }
118
119         if ( NULL != test_bg ) {
120                 test_bg = NULL;
121         }
122
123         if ( NULL != test_eo ) {
124                 test_eo = NULL;
125         }
126
127         elm_exit();
128
129         tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
130 }
131
132 static void utc_UIFW_elm_gengrid_selected_item_get_func_01(void)
133 {
134         Elm_Object_Item *temp_item = NULL;
135
136         temp_item = elm_gengrid_selected_item_get(test_eo);
137
138         TET_CHECK_PASS(NULL, temp_item);
139
140         tet_result(TET_PASS);
141         tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, elm_gengrid_selected_item_get");
142 }
143
144 static void utc_UIFW_elm_gengrid_selected_item_get_func_02(void)
145 {
146         Elm_Object_Item *temp_item = NULL;
147
148         temp_item = elm_gengrid_selected_item_get(NULL);
149
150         TET_CHECK_FAIL(NULL, temp_item);
151
152         tet_result(TET_PASS);
153         tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, elm_gengrid_selected_item_get");
154 }