Git init
[framework/location/libslp-location.git] / TC / unit / utc_signals_service_disabled.c
1 /*
2  * libslp-location
3  *
4  * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Youngae Kang <youngae.kang@samsung.com>, Yunhan Kim <yhan.kim@samsung.com>,
7  *          Genie Kim <daejins.kim@samsung.com>, Minjune Kim <sena06.kim@samsung.com>
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21  
22 #include <tet_api.h>
23 #include <glib.h>
24 #include <location.h>
25
26 static void startup(), cleanup();
27 void (*tet_startup) () = startup;
28 void (*tet_cleanup) () = cleanup;
29
30 static void utc_location_svc_disabled();
31
32 struct tet_testlist tet_testlist[] = {
33         {utc_location_svc_disabled,1},
34         {NULL,0},
35 };      
36
37 static GMainLoop *loop = NULL;
38 int ret;
39 LocationObject* loc;
40
41 gboolean
42 exit_loop (gpointer data)
43 {
44         g_main_loop_quit (loop);
45         tet_result(TET_FAIL);
46         return FALSE;
47 }
48
49 static void startup()
50 {       
51         location_init();
52         loc = location_new(LOCATION_METHOD_GPS);
53         location_start(loc);
54         loop = g_main_loop_new(NULL,FALSE);     
55         tet_printf("\n TC startup");
56 }
57
58 static void cleanup()
59 {       
60         location_stop(loc);
61         location_free(loc);
62         tet_printf("\n TC End");
63 }
64
65 static void
66 cb_enabled (GObject *self,
67                                 guint _status,
68                                 gpointer userdata)
69 {
70         location_stop(loc);
71 }
72
73 static void
74 cb_disabled (GObject *self,
75                                 guint _status,
76                                 gpointer userdata)
77 {
78         if( LOCATION_STATUS_NO_FIX <= _status && _status <= LOCATION_STATUS_3D_FIX) tet_result(TET_PASS);
79         else tet_result(TET_FAIL);
80         g_main_loop_quit (loop);
81 }
82
83 static void
84 utc_location_svc_disabled()
85 {
86         g_signal_connect (loc, "service-enabled", G_CALLBACK(cb_enabled), loc);
87         g_signal_connect (loc, "service-disabled", G_CALLBACK(cb_disabled), loc);
88         g_timeout_add_seconds(60, exit_loop, NULL);
89         g_main_loop_run (loop); 
90
91 }