Git init
[framework/api/sim.git] / test / sim_get_spn_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 <sim.h>
20 #include <stdlib.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 int main()
29 {
30         int ret = 0;
31         char* spn = NULL;
32         int ret_value = sim_get_spn(&spn);
33
34         switch(ret_value)
35         {
36                 case SIM_ERROR_NONE:
37                         ret = 0;
38                         if( spn != NULL )
39                         {
40                                 LOGI("SPN is %s", spn);
41                                 free(spn);
42                         }
43                         else
44                         {
45                                 LOGI("SPN is NULL");
46                         }
47                         break;
48                 case SIM_ERROR_INVALID_PARAMETER:
49                         LOGE("Invalid parameter");
50                         ret = -1;
51                         break;                                                                                                                        
52                 case SIM_ERROR_OPERATION_FAILED:
53                         LOGE("Cannot find SPN value");
54                         ret = -1;
55                         break;
56                 case SIM_ERROR_NOT_AVAILABLE:
57                         LOGE("SIM is not available");
58                         ret = -1;
59                         break;                  
60                 default:
61                         LOGE("Unexpected return value");
62                         ret = -1;
63                         break;
64         }
65
66
67         return ret;
68 }