Patch version revert to build other pakages
[platform/core/api/network-info.git] / test / network_info_rssi_changed_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 <string.h>
21 #include <telephony_network.h>
22 #include <dlog.h>
23 #include <glib.h>
24
25 #ifdef LOG_TAG
26 #undef LOG_TAG
27 #endif
28 #define LOG_TAG "TIZEN_N_NETWORK_INFO_TEST"
29
30 static GMainLoop *event_loop;
31
32 static void rssi_changed_cb_impl(network_info_rssi_e rssi, void* user_data)
33 {
34         LOGI("[%s] Start rssi_changed_cb_impl", __FUNCTION__);
35
36         LOGI("[%s] RSSI: %d", __FUNCTION__, rssi);
37         LOGI("[%s] user data: %s", __FUNCTION__, user_data);
38
39         LOGI("[%s] End rssi_changed_cb_impl", __FUNCTION__);
40         g_main_loop_quit(event_loop);
41 }
42
43 int main()
44 {
45         if( network_info_set_rssi_changed_cb(rssi_changed_cb_impl, "rssi_changed_test") == NETWORK_INFO_ERROR_NONE )
46         {
47                 LOGI("[%s] Succeeded to add callback function", __FUNCTION__);
48         }
49         else
50         {
51                 LOGE("[%s] Failed to add callback function", __FUNCTION__);
52                 return -1;
53         }
54
55         LOGI("[%s] If RSSI is changed, then callback function will be called", __FUNCTION__);
56         event_loop = g_main_loop_new(NULL, FALSE);
57         g_main_loop_run(event_loop);
58
59         if( network_info_unset_rssi_changed_cb() == NETWORK_INFO_ERROR_NONE )
60         {
61                 LOGI("[%s] Succeeded to remove callback function", __FUNCTION__);
62         }
63         else
64         {
65                 LOGE("[%s] Failed to remove callback function", __FUNCTION__);
66                 return -1;
67         }
68
69         return 0;
70 }