Add codes for setting voice touch as auto mode
[platform/core/appfw/app-core.git] / TC / unit / utc_ApplicationFW_appcore_efl_main_func.c
1 /*
2  *  app-core
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Jayoun Lee <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21 #include <tet_api.h>
22 #include <Elementary.h>
23 #include <appcore-efl.h>
24
25 static void startup(void);
26 static void cleanup(void);
27
28 void (*tet_startup)(void) = startup;
29 void (*tet_cleanup)(void) = cleanup;
30
31 static void utc_ApplicationFW_appcore_efl_main_func_01(void);
32 static void utc_ApplicationFW_appcore_efl_main_func_02(void);
33
34 enum {
35         POSITIVE_TC_IDX = 0x01,
36         NEGATIVE_TC_IDX,
37 };
38
39 struct tet_testlist tet_testlist[] = {
40         { utc_ApplicationFW_appcore_efl_main_func_01, POSITIVE_TC_IDX },
41         { utc_ApplicationFW_appcore_efl_main_func_02, NEGATIVE_TC_IDX },
42         { NULL, 0},
43 };
44
45 static void startup(void)
46 {
47 }
48
49 static void cleanup(void)
50 {
51 }
52
53 static int app_reset(bundle *b, void *data)
54 {
55         elm_exit();
56         return 0;
57 }
58
59 /**
60  * @brief Positive test case of appcore_efl_main()
61  */
62 static void utc_ApplicationFW_appcore_efl_main_func_01(void)
63 {
64         int r = 0;
65         int argc = 1;
66         char *_argv[] = {
67                 "Testcase",
68                 NULL,
69         };
70         char **argv;
71         struct appcore_ops ops = {
72                 .reset = app_reset,
73         };
74
75         argv = _argv;
76         r = appcore_efl_main("Testcase", &argc, &argv, &ops);
77         printf("Return %d\n", r);
78         if (r) {
79                 tet_infoline("appcore_efl_main() failed in positive test case");
80                 tet_result(TET_FAIL);
81                 return;
82         }
83         tet_result(TET_PASS);
84 }
85
86 /**
87  * @brief Negative test case of ug_init appcore_efl_main()
88  */
89 static void utc_ApplicationFW_appcore_efl_main_func_02(void)
90 {
91         int r = 0;
92         int argc = 1;
93         char *_argv[] = {
94                 "Testcase",
95                 NULL,
96         };
97         char **argv;
98         struct appcore_ops ops = {
99                 .reset = app_reset,
100         };
101
102         argv = _argv;
103         r = appcore_efl_main("Testcase", &argc, &argv, NULL);
104         if (!r) {
105                 tet_infoline("appcore_efl_main() failed in negative test case");
106                 tet_result(TET_FAIL);
107                 return;
108         }
109
110         r = appcore_efl_main(NULL, &argc, &argv, &ops);
111         if (!r) {
112                 tet_infoline("appcore_efl_main() failed in negative test case");
113                 tet_result(TET_FAIL);
114                 return;
115         }
116
117         r = appcore_efl_main("Testcase", NULL, &argv, &ops);
118         if (!r) {
119                 tet_infoline("appcore_efl_main() failed in negative test case");
120                 tet_result(TET_FAIL);
121                 return;
122         }
123
124         r = appcore_efl_main("Testcase", &argc, NULL, &ops);
125         if (!r) {
126                 tet_infoline("appcore_efl_main() failed in negative test case");
127                 tet_result(TET_FAIL);
128                 return;
129         }
130
131         tet_result(TET_PASS);
132 }