tizen beta release
[framework/location/libslp-location.git] / TC / unit / utc_location_get_last_position.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_get_last_position_01();
31 static void utc_location_get_last_position_02();
32 static void utc_location_get_last_position_03();
33 static void utc_location_get_last_position_04();
34
35 struct tet_testlist tet_testlist[] = {
36         {utc_location_get_last_position_01,1},
37         {utc_location_get_last_position_02,2},
38         {utc_location_get_last_position_03,3},
39         {utc_location_get_last_position_04,4},
40         {NULL,0},
41 };
42
43 int ret;
44 LocationObject* loc;
45
46 static void startup()
47 {
48         location_init();
49         loc = location_new(LOCATION_METHOD_GPS);
50         tet_printf("\n TC startup");
51 }
52
53 static void cleanup()
54 {
55         location_free(loc);
56         tet_printf("\n TC End");
57 }
58
59 static void
60 utc_location_get_last_position_01()
61 {
62         LocationPosition *last_pos = NULL;
63         LocationAccuracy *last_acc = NULL;
64
65         ret = location_get_last_position (loc, LOCATION_METHOD_GPS, &last_pos, &last_acc);
66         if (ret == LOCATION_ERROR_NONE) tet_result(TET_PASS);
67         else tet_result(TET_FAIL);
68 }
69
70 static void
71 utc_location_get_last_position_02()
72 {
73         LocationAccuracy *last_acc = NULL;
74         LocationPosition *last_pos = NULL;
75
76         ret = location_get_last_position (NULL, LOCATION_METHOD_HYBRID, &last_pos, &last_acc);
77         tet_printf("Returned value: %d", ret);
78         if (ret == LOCATION_ERROR_NONE) tet_result(TET_PASS);
79         else tet_result(TET_FAIL);
80 }
81
82 static void
83 utc_location_get_last_position_03()
84 {
85         LocationAccuracy *last_acc = NULL;
86         ret = location_get_last_position (loc, LOCATION_METHOD_GPS, NULL, &last_acc);
87         tet_printf("Returned value: %d", ret);
88         if (ret == LOCATION_ERROR_PARAMETER) tet_result(TET_PASS);
89         else tet_result(TET_FAIL);
90 }
91
92 static void
93 utc_location_get_last_position_04()
94 {
95         LocationPosition *last_pos = NULL;
96         ret = location_get_last_position (loc, LOCATION_METHOD_GPS, &last_pos, NULL);
97         tet_printf("Returned value: %d", ret);
98         if (ret == LOCATION_ERROR_PARAMETER) tet_result(TET_PASS);
99         else tet_result(TET_FAIL);
100 }