apply FSL(Flora Software License)
[framework/messaging/msg-service.git] / TC / msgTC / MapiMessage / utc_msg_get_message_type.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 #include "utc_msg_get_message_type.h"
18
19 static MSG_HANDLE_T msgHandle = NULL;
20 msg_message_t msgInfo;
21
22 void startup(void)
23 {
24         MSG_ERROR_T err = MSG_SUCCESS;
25
26         err = msg_open_msg_handle(&msgHandle);
27         if (err != MSG_SUCCESS)
28         {
29                 tet_result(TET_FAIL);
30                 return;
31         }
32
33         msgInfo = msg_new_message();
34 }
35 void cleanup(void)
36 {
37         msg_close_msg_handle(&msgHandle);
38 }
39
40 void utc_msg_get_message_type_001()
41 {
42         MSG_ERROR_T err = MSG_SUCCESS;
43
44         err = msg_get_message_type(msgInfo);
45         if (err < MSG_SUCCESS)
46         {
47                 tet_result(TET_FAIL);
48                 return;
49         }
50
51         tet_result(TET_PASS);
52 }
53
54 void utc_msg_get_message_type_002()
55 {
56         MSG_ERROR_T err = MSG_SUCCESS;
57
58         err = msg_get_message_type(NULL);
59         if (err < MSG_SUCCESS)
60         {
61                 tet_result(TET_PASS);
62                 return;
63         }
64
65         tet_result(TET_FAIL);
66 }