tizen beta release
[framework/location/libslp-location.git] / TC / unit / utc_location_get_last_known_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_known_position_01();
31 static void utc_location_get_last_known_position_02();
32
33 struct tet_testlist tet_testlist[] = {
34         {utc_location_get_last_known_position_01,1},
35         {utc_location_get_last_known_position_02,2},
36         {NULL,0},
37 };
38
39 int ret;
40 LocationObject* loc;
41
42 static void startup()
43 {
44         ret = location_init();
45         loc = location_new(LOCATION_METHOD_GPS);
46         tet_printf("\n TC startup");
47 }
48
49 static void cleanup()
50 {
51         if( loc )
52                 location_free(loc);
53         tet_printf("\n TC End");
54 }
55
56 static void
57 utc_location_get_last_known_position_01()
58 {
59         int ret = 0;
60         LocationLastPosition last_known_position = {0, };
61
62         ret = location_get_last_known_position(loc, LOCATION_METHOD_HYBRID, &last_known_position);
63         if (ret == LOCATION_ERROR_NONE) tet_result(TET_PASS);
64         else tet_result(TET_FAIL);
65 }
66
67 static void
68 utc_location_get_last_known_position_02()
69 {
70         int ret = 0;
71         LocationLastPosition last_known_position = {0, };
72         ret = location_get_last_known_position(NULL, LOCATION_METHOD_HYBRID, &last_known_position);
73         if (ret == LOCATION_ERROR_NONE) tet_result(TET_PASS);
74         else tet_result(TET_FAIL);
75 }
76