Git init
[framework/api/sim.git] / test / sim_get_state_test.c
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
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
18 #include <stdio.h>
19 #include <string.h>
20 #include <sim.h>
21 #include <dlog.h>
22
23 #ifdef LOG_TAG
24 #undef LOG_TAG
25 #endif
26 #define LOG_TAG "TIZEN_N_SIM_TEST"
27
28
29 void convert_state_into_string(sim_state_e sim_state, char* sim_state_string)
30 {
31         switch(sim_state)
32         {
33                 case SIM_STATE_AVAILABLE:
34                         snprintf(sim_state_string, 256, "available");
35                         break;
36                 case SIM_STATE_LOCKED:
37                         snprintf(sim_state_string, 256, "locked");
38                         break;
39                 case SIM_STATE_UNKNOWN:
40                         snprintf(sim_state_string, 256, "unknown");
41                         break;
42                 default:
43                         snprintf(sim_state_string, 256, "unavailable");
44                         break;          
45         }
46
47 }
48
49 int main()
50 {
51         int ret = 0;
52         sim_state_e sim_state = SIM_STATE_UNAVAILABLE;
53         char sim_state_string[256] = "";
54         int ret_value = sim_get_state(&sim_state);
55
56
57         switch(ret_value)
58         {
59                 case SIM_ERROR_NONE:
60                         convert_state_into_string(sim_state, sim_state_string);
61                         LOGI("SIM is %s", sim_state_string);
62                         ret = 0;
63                         break;
64                 case SIM_ERROR_OPERATION_FAILED:
65                         LOGE("Can not get sim state");
66                         ret = -1;
67                         break;
68                 case SIM_ERROR_INVALID_PARAMETER:
69                         LOGE("Invalid parameter");
70                         ret = -1;
71                         break;                                                                                                                                                
72                 default:
73                         LOGE("Unexpected return value");
74                         ret = -1;
75                         break;
76         }
77
78         return ret;
79 }