upload tizen1.0 source
[framework/appfw/aul-1.git] / TC / unit / utc_ApplicationFW_aul_app_get_running_app_info_func.c
1 /*
2  *  aul
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 "aul.h"
23
24 static void startup(void);
25 static void cleanup(void);
26
27 void (*tet_startup)(void) = startup;
28 void (*tet_cleanup)(void) = cleanup;
29
30 static void utc_ApplicationFW_aul_app_get_running_app_info_func_01(void);
31 static void utc_ApplicationFW_aul_app_get_running_app_info_func_02(void);
32
33 enum {
34         POSITIVE_TC_IDX = 0x01,
35         NEGATIVE_TC_IDX,
36 };
37
38 struct tet_testlist tet_testlist[] = {
39         { utc_ApplicationFW_aul_app_get_running_app_info_func_01, POSITIVE_TC_IDX },
40         { utc_ApplicationFW_aul_app_get_running_app_info_func_02, NEGATIVE_TC_IDX },
41         { NULL, 0 }
42 };
43
44 static void startup(void)
45 {
46 }
47
48 static void cleanup(void)
49 {
50 }
51
52 static int iterfunc(const aul_app_info* info, void* data)
53 {
54         return 0;
55 }
56
57 /**
58  * @brief Positive test case of aul_app_get_running_app_info()
59  */
60 static void utc_ApplicationFW_aul_app_get_running_app_info_func_01(void)
61 {
62         int r = 0;
63
64         r = aul_app_get_running_app_info(iterfunc, NULL);
65
66         if (r<0) {
67                 tet_infoline("aul_app_get_running_app_info() failed in positive test case");
68                 tet_result(TET_FAIL);
69                 return;
70         }
71         tet_result(TET_PASS);
72 }
73
74 /**
75  * @brief Negative test case of ug_init aul_app_get_running_app_info()
76  */
77 static void utc_ApplicationFW_aul_app_get_running_app_info_func_02(void)
78 {
79         int r = 0;
80
81         r = aul_app_get_running_app_info(NULL,NULL);
82
83         if (r>=0) {
84                 tet_infoline("aul_app_get_running_app_info() failed in negative test case");
85                 tet_result(TET_FAIL);
86                 return;
87         }
88         tet_result(TET_PASS);
89 }