Patch version revert to build other pakages
[platform/core/api/network-info.git] / test / network_info_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
19 #include <stdio.h>
20 #include <telephony_network.h>
21 #include <dlog.h>
22
23 #ifdef LOG_TAG
24 #undef LOG_TAG
25 #endif
26 #define LOG_TAG "TIZEN_N_NETWORK_INFO_TEST"
27
28 int main()
29 {
30         int ret = 0;
31         network_info_service_state_e network_service_state = NETWORK_INFO_SERVICE_STATE_OUT_OF_SERVICE;
32         int ret_value = network_info_get_service_state(&network_service_state);
33
34         switch(ret_value)
35         {
36                 case NETWORK_INFO_ERROR_NONE:
37                         switch(network_service_state)
38                         {
39                                 case NETWORK_INFO_SERVICE_STATE_IN_SERVICE:
40                                         LOGI("Service status is NETWORK_INFO_SERVICE_STATE_IN_SERVICE.");
41                                         break;
42                                 case NETWORK_INFO_SERVICE_STATE_OUT_OF_SERVICE:
43                                         LOGI("Service status is NETWORK_INFO_SERVICE_STATE_OUT_OF_SERVICE.");
44                                         break;
45                                 case NETWORK_INFO_SERVICE_STATE_EMERGENCY_ONLY:
46                                         LOGI("Service status is TELEPHONY_NETWORK_EMERGENCY_ONLY.");
47                                         break;
48                                 case NETWORK_INFO_SERVICE_STATE_RADIO_OFF:
49                                         LOGI("Service status is TELEPHONY_NETWORK_RADIO_OFF.");
50                                         break;
51                                 default:
52                                         LOGI("Service type is unknown.\n");
53                                         break;
54                         }
55                         ret = 0;
56                         break;
57                 case NETWORK_INFO_ERROR_INVALID_PARAMETER:
58                         LOGI("Invalid parameter");
59                         ret = -1;
60                         break;
61                 case NETWORK_INFO_ERROR_OPERATION_FAILED:
62                         LOGI("Cannot find service status.");
63                         ret = -1;
64                         break;
65                 default:
66                         LOGI("Unexpected return value.");
67                         ret = -1;
68                         break;
69         }
70
71         return ret;
72 }