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