Patch version revert to build other pakages
[platform/core/api/network-info.git] / test / network_info_get_type_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_type_e network_type = NETWORK_INFO_TYPE_UNKNOWN;
32         int ret_value = network_info_get_type(&network_type);
33
34         switch(ret_value)
35         {
36                 case NETWORK_INFO_ERROR_NONE:
37                         switch(network_type)
38                         {
39                                 case NETWORK_INFO_TYPE_GSM:
40                                         LOGI("Network type is NETWORK_INFO_TYPE_GSM.");
41                                         break;
42                                 case NETWORK_INFO_TYPE_GPRS:
43                                         LOGI("Network type is NETWORK_INFO_TYPE_GPRS.");
44                                         break;
45                                 case NETWORK_INFO_TYPE_EDGE:
46                                         LOGI("Network type is NETWORK_INFO_TYPE_EDGE.");
47                                         break;
48                                 case NETWORK_INFO_TYPE_UMTS:
49                                         LOGI("Network type is NETWORK_INFO_TYPE_UMTS.");
50                                         break;
51                                 case NETWORK_INFO_TYPE_HSDPA:
52                                         LOGI("Network type is NETWORK_INFO_TYPE_HSDPA.");
53                                         break;
54                                 default:
55                                         LOGI("Unexpected network type.");
56                                         break;
57                         }
58                         ret = 0;
59                         break;
60                 case NETWORK_INFO_ERROR_INVALID_PARAMETER:
61                         LOGI("Invalid parameter");
62                         ret = -1;
63                         break;
64                 case NETWORK_INFO_ERROR_OUT_OF_SERVICE:
65                         LOGI("Out of service");
66                         ret = -1;
67                         break;
68                 case NETWORK_INFO_ERROR_OPERATION_FAILED:
69                         LOGI("Cannot find network type.");
70                         ret = -1;
71                         break;
72                 default:
73                         LOGI("Unexpected return value.\n");
74                         ret = -1;
75                         break;
76         }
77
78         return ret;
79 }