apply FSL license
[pkgs/u/ui-gadget.git] / TC / unit / utc_ApplicationFW_ug_destroy_func.c
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.tizenopensource.org/license
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17
18
19
20
21 #include <tet_api.h>
22 #include <ui-gadget.h>
23 #include <Elementary.h>
24 #include <Ecore_X.h>
25
26 static void startup(void);
27 static void cleanup(void);
28
29 void (*tet_startup)(void) = startup;
30 void (*tet_cleanup)(void) = cleanup;
31
32 static void utc_ApplicationFW_ug_destroy_func_01(void);
33 static void utc_ApplicationFW_ug_destroy_func_02(void);
34
35 enum {
36         POSITIVE_TC_IDX = 0x01,
37         NEGATIVE_TC_IDX,
38 };
39
40 struct tet_testlist tet_testlist[] = {
41         { utc_ApplicationFW_ug_destroy_func_01, POSITIVE_TC_IDX },
42         { utc_ApplicationFW_ug_destroy_func_02, NEGATIVE_TC_IDX },
43         { NULL, 0},
44 };
45
46 #define TESTUG "helloUG-efl"
47
48 static void startup(void)
49 {
50         elm_init(0, NULL);
51 }
52
53 static void cleanup(void)
54 {
55         elm_shutdown();
56 }
57
58 static int init(void)
59 {
60         Evas_Object *win;
61         win = elm_win_add(NULL, "UI gadget test", ELM_WIN_BASIC);
62         if (!win) {
63                 tet_infoline("Cannot create window");
64                 return -1;
65         }
66
67         if (UG_INIT_EFL(win, UG_OPT_INDICATOR_ENABLE)) {
68                 tet_infoline("ug_init() failed");
69                 return -1;
70         }
71         return 0;
72 }
73
74 static Eina_Bool tst01(void *data)
75 {
76         int r = 0;
77         struct ui_gadget *ug = data;
78
79         r = ug_destroy(ug);
80
81         if (r) {
82                 tet_infoline("ug_destroy() failed in positive test case");
83                 tet_result(TET_FAIL);
84                 goto exit;
85         }
86         tet_result(TET_PASS);
87
88 exit:
89         elm_exit();
90         return 0;
91 }
92
93 /**
94  * @brief Positive test case of ug_destroy()
95  */
96 static void utc_ApplicationFW_ug_destroy_func_01(void)
97 {
98         struct ui_gadget *ug;
99
100         if (init()) {
101                 tet_result(TET_UNINITIATED);
102                 return;
103         }
104
105         ug = ug_create(NULL, TESTUG, UG_MODE_FULLVIEW, NULL, NULL);
106         if (!ug) {
107                 tet_infoline("ug_create() failed");
108                 tet_result(TET_UNINITIATED);
109         }
110
111         ecore_idler_add(tst01, ug);
112         elm_run();
113 }
114
115 /**
116  * @brief Negative test case of ug_init ug_destroy()
117  */
118 static void utc_ApplicationFW_ug_destroy_func_02(void)
119 {
120         int r = 0;
121
122         if (init()) {
123                 tet_result(TET_UNINITIATED);
124                 return;
125         }
126
127         r = ug_destroy(NULL);
128
129         if (!r) {
130                 tet_infoline("ug_destroy() failed in negative test case");
131                 tet_result(TET_FAIL);
132                 return;
133         }
134         tet_result(TET_PASS);
135 }