Initialize Tizen 2.3
[framework/appfw/pkgmgr-info.git] / TC / unit / utc_ApplicationFW_pkgmgrinfo_pkginfo_filter_add_string_func.c
1 /*
2  *  slp-pkgmgr
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>,
7  * Jaeho Lee <jaeho81.lee@samsung.com>, Shobhit Srivastava <shobhit.s@samsung.com>
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  */
22 #include <tet_api.h>
23 #include <pkgmgr-info.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_pkgmgrinfo_pkginfo_filter_add_string_func_01(void);
32 static void utc_ApplicationFW_pkgmgrinfo_pkginfo_filter_add_string_func_02(void);
33 static void utc_ApplicationFW_pkgmgrinfo_pkginfo_filter_add_string_func_03(void);
34
35
36 enum {
37         POSITIVE_TC_IDX = 0x01,
38         NEGATIVE_TC_IDX,
39 };
40
41 struct tet_testlist tet_testlist[] = {
42         {utc_ApplicationFW_pkgmgrinfo_pkginfo_filter_add_string_func_01, POSITIVE_TC_IDX},
43         {utc_ApplicationFW_pkgmgrinfo_pkginfo_filter_add_string_func_02, NEGATIVE_TC_IDX},
44         {utc_ApplicationFW_pkgmgrinfo_pkginfo_filter_add_string_func_03, NEGATIVE_TC_IDX},
45         {NULL, 0},
46 };
47
48 static void startup(void)
49 {
50 }
51
52 static void cleanup(void)
53 {
54 }
55
56 /**
57  * @brief Positive test case of pkgmgrinfo_pkginfo_filter_add_string()
58  */
59 static void utc_ApplicationFW_pkgmgrinfo_pkginfo_filter_add_string_func_01(void)
60 {
61         int r = 0;
62         pkgmgrinfo_pkginfo_filter_h handle;
63         r = pkgmgrinfo_pkginfo_filter_create(&handle);
64         if (r != PMINFO_R_OK) {
65                 tet_result(TET_UNINITIATED);
66                 return;
67         }
68         r = pkgmgrinfo_pkginfo_filter_add_string(handle, PMINFO_PKGINFO_PROP_PACKAGE_TYPE, "rpm");
69         if (r != PMINFO_R_OK) {
70                 tet_infoline
71                     ("pkgmgrinfo_pkginfo_filter_add_string() failed in positive test case");
72                 pkgmgrinfo_pkginfo_filter_destroy(handle);
73                 tet_result(TET_FAIL);
74                 return;
75         }
76         pkgmgrinfo_pkginfo_filter_destroy(handle);
77         tet_result(TET_PASS);
78 }
79
80 /**
81  * @brief Negative test case of pkgmgrinfo_pkginfo_filter_add_string()
82  */
83 static void utc_ApplicationFW_pkgmgrinfo_pkginfo_filter_add_string_func_02(void)
84 {
85         int r = 0;
86         r = pkgmgrinfo_pkginfo_filter_add_string(NULL, PMINFO_PKGINFO_PROP_PACKAGE_TYPE, "rpm");
87         if (r == PMINFO_R_OK) {
88                 tet_infoline
89                     ("pkgmgrinfo_pkginfo_filter_add_string() failed in negative test case");
90                 tet_result(TET_FAIL);
91                 return;
92         }
93         tet_result(TET_PASS);
94 }
95
96 /**
97  * @brief Negative test case of pkgmgrinfo_pkginfo_filter_add_string()
98  */
99 static void utc_ApplicationFW_pkgmgrinfo_pkginfo_filter_add_string_func_03(void)
100 {
101         int r = 0;
102         pkgmgrinfo_pkginfo_filter_h handle;
103         r = pkgmgrinfo_pkginfo_filter_create(&handle);
104         if (r != PMINFO_R_OK) {
105                 tet_result(TET_UNINITIATED);
106                 return;
107         }
108         r = pkgmgrinfo_pkginfo_filter_add_string(handle, NULL, "rpm");
109         if (r == PMINFO_R_OK) {
110                 tet_infoline
111                     ("pkgmgrinfo_pkginfo_filter_add_string() failed in negative test case");
112                 tet_result(TET_FAIL);
113                 pkgmgrinfo_pkginfo_filter_destroy(handle);
114                 return;
115         }
116         pkgmgrinfo_pkginfo_filter_destroy(handle);
117         tet_result(TET_PASS);
118 }