summaryrefslogtreecommitdiff
path: root/TC/unit/utc_location_get_address.c
blob: b46e8652b99d1c74a0559e89749532208671a8ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
 * libslp-location
 *
 * Copyright (c) 2010-2013 Samsung Electronics Co., Ltd. All rights reserved.
 *
 * Contact: Youngae Kang <youngae.kang@samsung.com>, Minjune Kim <sena06.kim@samsung.com>
 *          Genie Kim <daejins.kim@samsung.com>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <tet_api.h>
#include <glib.h>
#include <location.h>

static void startup(), cleanup();
void (*tet_startup) () = startup;
void (*tet_cleanup) () = cleanup;

static void utc_location_get_address_01();
static void utc_location_get_address_02();
static void utc_location_get_address_03();

struct tet_testlist tet_testlist[] = {
	{utc_location_get_address_01,1},
	{utc_location_get_address_02,2},
	{utc_location_get_address_03,3},
	{NULL,0},
};

static GMainLoop *loop = NULL;
LocationObject* loc = NULL;
int ret = LOCATION_ERROR_NONE;
int isNetStarted = 0;

static gboolean
exit_loop_fail (gpointer data)
{
	g_main_loop_quit (loop);
	tet_result(TET_FAIL);
	return FALSE;
}

static void startup()
{
	location_init();
	loc = location_new(LOCATION_METHOD_GPS);

	loop = g_main_loop_new(NULL,FALSE);

	tet_printf("\n TC startup");
}

static void cleanup()
{
	location_stop(loc);
	location_free(loc);
	tet_printf("\n TC End");
}

static void
_get_address (GObject *self,
	guint _status,
	gpointer userdata)
{
	LocationAccuracy *acc = NULL;
	LocationAddress *addr = NULL;

	ret = location_get_address(loc, &addr, &acc);
	tet_printf("Returned value: %d", ret);
	if (ret == LOCATION_ERROR_NONE ||
		ret == LOCATION_ERROR_CONFIGURATION) {
		location_address_free(addr);
		location_accuracy_free(acc);
		tet_result(TET_PASS);
	} else tet_result(TET_FAIL);
	g_main_loop_quit (loop);
}

static void
utc_location_get_address_01()
{
	g_signal_connect (loc, "service-enabled", G_CALLBACK(_get_address), loc);
	location_start(loc);
	g_timeout_add_seconds(60, exit_loop_fail, loop);
	g_main_loop_run (loop);	
}

static void
utc_location_get_address_02()
{
	LocationAccuracy *acc = NULL;
	LocationAddress *addr = NULL;

	ret = location_get_address(NULL, &addr, &acc);
	tet_printf("Returned value: %d", ret);
	if (ret == LOCATION_ERROR_PARAMETER) tet_result(TET_PASS);
	else tet_result(TET_FAIL);
}

static void
utc_location_get_address_03()
{
	LocationAccuracy *acc = NULL;
	ret = location_get_address(loc, NULL, &acc);
	tet_printf("Returned value: %d", ret);
	if(ret == LOCATION_ERROR_PARAMETER) tet_result(TET_PASS);
	else tet_result(TET_FAIL);
}