Initialize Tizen 2.3
[framework/uifw/elementary.git] / mobile / TC / elm_ts / gengrid / utc_UIFW_elm_gengrid_multi_select_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
31 void _elm_precondition(void);
32 static void _win_del(void *data, Evas_Object *obj, void *event_info);
33
34 static void _win_del(void *data, Evas_Object *obj, void *event_info)
35 {
36         elm_exit();
37 }
38
39 void _elm_precondition(void)
40 {
41         elm_init(0, NULL);
42
43         main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
44         elm_win_title_set(main_win, "Elementary Unit Test Suite");
45         evas_object_smart_callback_add(main_win, "delete,request", _win_del, NULL);
46         main_bg = elm_bg_add(main_win);
47         evas_object_size_hint_weight_set(main_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
48
49         evas_object_resize(main_win, 320, 480);
50         evas_object_show(main_win);
51 }
52
53 static void startup(void);
54 static void cleanup(void);
55
56 void (*tet_startup)(void) = startup;
57 void (*tet_cleanup)(void) = cleanup;
58
59 static void utc_UIFW_elm_gengrid_multi_select_get_func_01(void);
60 static void utc_UIFW_elm_gengrid_multi_select_get_func_02(void);
61
62 enum {
63         POSITIVE_TC_IDX = 0x01,
64         NEGATIVE_TC_IDX,
65 };
66
67 struct tet_testlist tet_testlist[] = {
68         { utc_UIFW_elm_gengrid_multi_select_get_func_01, POSITIVE_TC_IDX },
69         { utc_UIFW_elm_gengrid_multi_select_get_func_02, NEGATIVE_TC_IDX },
70         { NULL, 0 }
71 };
72
73 static void startup(void)
74 {
75         tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
76
77         _elm_precondition();
78
79         test_win = elm_win_add(NULL, "Page Control", ELM_WIN_BASIC);
80         elm_win_title_set(test_win, "Page Control");
81         elm_win_autodel_set(test_win, 1);
82
83         test_bg = elm_bg_add(test_win);
84         elm_win_resize_object_add(test_win, test_bg);
85         evas_object_size_hint_weight_set(test_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
86         evas_object_show(test_bg);
87
88         evas_object_resize(test_win, 480, 800);
89         evas_object_show(test_win);
90
91         test_eo = elm_gengrid_add(test_win);
92
93         elm_gengrid_multi_select_set(test_eo, EINA_TRUE);
94
95         tet_infoline("[[ TET_MSG ]]:: Completing startup");
96 }
97
98 static void cleanup(void)
99 {
100         if ( NULL != main_win ) {
101                 main_win = NULL;
102         }
103
104         if ( NULL != main_bg ) {
105                 main_bg = NULL;
106         }
107
108         if ( NULL != test_win ) {
109                 test_win = NULL;
110         }
111
112         if ( NULL != test_bg ) {
113                 test_bg = NULL;
114         }
115
116         if ( NULL != test_eo ) {
117                 test_eo = NULL;
118         }
119
120         elm_exit();
121
122         tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
123 }
124
125 static void utc_UIFW_elm_gengrid_multi_select_get_func_01(void)
126 {
127         Eina_Bool flag = EINA_FALSE;
128
129         flag = elm_gengrid_multi_select_get(test_eo);
130
131         TET_CHECK_PASS(EINA_FALSE, flag);
132
133         tet_result(TET_PASS);
134         tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, elm_gengrid_multi_select_get");
135 }
136
137 static void utc_UIFW_elm_gengrid_multi_select_get_func_02(void)
138 {
139         Eina_Bool flag = EINA_FALSE;
140
141         flag = elm_gengrid_multi_select_get(NULL);
142
143         TET_CHECK_FAIL(EINA_FALSE, flag);
144
145         tet_result(TET_PASS);
146         tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, elm_gengrid_multi_select_get");
147 }