Patch version revert to build other pakages
[platform/core/api/network-info.git] / test / network_info_get_rssi_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_rssi_e rssi = NETWORK_INFO_RSSI_0;
32         int ret_value = network_info_get_rssi(&rssi);
33
34         switch(ret_value)
35         {
36                 case NETWORK_INFO_ERROR_NONE:
37                         LOGI("Received Signal Strength Indicator is TELEPHONY_RSSI_%d", rssi);
38                         ret = 0;
39                         break;
40                 case NETWORK_INFO_ERROR_INVALID_PARAMETER:
41                         LOGI("Invalid parameter");
42                         ret = -1;
43                         break;
44                 case NETWORK_INFO_ERROR_OUT_OF_SERVICE:
45                         LOGI("Out of service");
46                         ret = -1;
47                         break;
48                 case NETWORK_INFO_ERROR_OPERATION_FAILED:
49                         LOGI("Cannot find Received Signal Strength Indicator value");
50                         ret = -1;
51                         break;
52                 default:
53                         LOGI("Unexpected return value");
54                         ret = -1;
55                         break;
56         }
57
58         return ret;
59 }