update tizen source
[framework/messaging/msg-service.git] / TC / msgTC / MapiStorage / utc_msg_get_folder_view_list.c
1 /*\r
2 *\r
3 * Copyright (c) 2000-2012 Samsung Electronics Co., Ltd. All Rights Reserved.\r
4 *\r
5 * This file is part of msg-service.\r
6 *\r
7 * Contact: Jaeyun Jeong <jyjeong@samsung.com>\r
8 *          Sangkoo Kim <sangkoo.kim@samsung.com>\r
9 *          Seunghwan Lee <sh.cat.lee@samsung.com>\r
10 *          SoonMin Jung <sm0415.jung@samsung.com>\r
11 *          Jae-Young Lee <jy4710.lee@samsung.com>\r
12 *          KeeBum Kim <keebum.kim@samsung.com>\r
13 *\r
14 * PROPRIETARY/CONFIDENTIAL\r
15 *\r
16 * This software is the confidential and proprietary information of\r
17 * SAMSUNG ELECTRONICS ("Confidential Information"). You shall not\r
18 * disclose such Confidential Information and shall use it only in\r
19 * accordance with the terms of the license agreement you entered\r
20 * into with SAMSUNG ELECTRONICS.\r
21 *\r
22 * SAMSUNG make no representations or warranties about the suitability\r
23 * of the software, either express or implied, including but not limited\r
24 * to the implied warranties of merchantability, fitness for a particular\r
25 * purpose, or non-infringement. SAMSUNG shall not be liable for any\r
26 * damages suffered by licensee as a result of using, modifying or\r
27 * distributing this software or its derivatives.\r
28 *\r
29 */
30
31 #include "utc_msg_get_folder_view_list.h"\r
32 \r
33 static MSG_HANDLE_T msgHandle = NULL;\r
34 msg_message_t msgInfo;\r
35 MSG_SENDINGOPT_S sendOpt;\r
36 \r
37 void startup(void)\r
38 {\r
39         MSG_ERROR_T err = MSG_SUCCESS;\r
40 \r
41         err = msg_open_msg_handle(&msgHandle);\r
42         if (err != MSG_SUCCESS)\r
43         {\r
44                 tet_result(TET_FAIL);\r
45                 return;\r
46         }\r
47 \r
48         msgInfo = msg_new_message();\r
49 \r
50         memset(&sendOpt, 0x00, sizeof(sendOpt));\r
51 \r
52         sendOpt.bSetting = false;\r
53 \r
54         msg_add_message(msgHandle, msgInfo, &sendOpt);\r
55 \r
56         msg_set_message_id(msgInfo, 0);\r
57 }\r
58 void cleanup(void)\r
59 {\r
60         msg_close_msg_handle(&msgHandle);\r
61 }\r
62 \r
63 void utc_msg_get_folder_view_list_001()\r
64 {\r
65         MSG_ERROR_T err = MSG_SUCCESS;\r
66         MSG_SORT_RULE_S sort_rule;\r
67         MSG_LIST_S msg_folder_view_list;\r
68 \r
69         memset(&sort_rule, 0x00, sizeof(sort_rule));\r
70         memset(&msg_folder_view_list, 0x00, sizeof(msg_folder_view_list));\r
71 \r
72         err = msg_get_folder_view_list(msgHandle, MSG_DRAFT_ID, &sort_rule, &msg_folder_view_list);\r
73         msg_release_message_list(&msg_folder_view_list);\r
74         if (err != MSG_SUCCESS)\r
75         {\r
76                 tet_result(TET_FAIL);\r
77                 return;\r
78         }\r
79 \r
80         tet_result(TET_PASS);\r
81 }\r
82 \r
83 void utc_msg_get_folder_view_list_002()\r
84 {\r
85         MSG_ERROR_T err = MSG_SUCCESS;\r
86         MSG_SORT_RULE_S sort_rule;\r
87         MSG_LIST_S msg_folder_view_list;\r
88 \r
89         memset(&sort_rule, 0x00, sizeof(sort_rule));\r
90         memset(&msg_folder_view_list, 0x00, sizeof(msg_folder_view_list));\r
91 \r
92         err = msg_get_folder_view_list(NULL, MSG_DRAFT_ID, &sort_rule, &msg_folder_view_list);\r
93         if (err != MSG_SUCCESS)\r
94         {\r
95                 tet_result(TET_PASS);\r
96                 return;\r
97         }\r
98 \r
99         tet_result(TET_FAIL);\r
100 }