tizen beta release
[framework/location/libslp-location.git] / TC / unit / utc_location_get_last_satellite.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_satellite_01();
31 static void utc_location_get_last_satellite_02();
32 static void utc_location_get_last_satellite_03();
33
34 struct tet_testlist tet_testlist[] = {
35         {utc_location_get_last_satellite_01,1},
36         {utc_location_get_last_satellite_02,2},
37         {utc_location_get_last_satellite_03,3},
38         {NULL,0},
39 };
40
41 int ret;
42 LocationObject* loc;
43
44 static void startup()
45 {
46         location_init();
47         loc = location_new(LOCATION_METHOD_GPS);
48         tet_printf("\n TC startup");
49 }
50
51 static void cleanup()
52 {
53         location_free(loc);
54         tet_printf("\n TC End");
55 }
56
57 static void
58 utc_location_get_last_satellite_01()
59 {
60         int ret = 0;
61         LocationSatellite *last_sat = NULL;
62
63         ret = location_get_last_satellite (loc, &last_sat);
64         tet_printf("Returned value: %d", ret);
65         if (ret == LOCATION_ERROR_NONE) {
66                 location_satellite_free(last_sat);
67                 tet_result(TET_PASS);
68         } else tet_result(TET_FAIL);
69
70 }
71
72 static void
73 utc_location_get_last_satellite_02()
74 {
75         LocationSatellite *last_sat = NULL;
76         ret = location_get_last_satellite (NULL, &last_sat);
77         tet_printf("Returned value: %d", ret);
78         if (ret == LOCATION_ERROR_PARAMETER) tet_result(TET_PASS);
79         else tet_result(TET_FAIL);
80 }
81
82 static void
83 utc_location_get_last_satellite_03()
84 {
85         ret = location_get_last_satellite (loc, NULL);
86         tet_printf("Returned value: %d", ret);
87         if (ret == LOCATION_ERROR_PARAMETER) tet_result(TET_PASS);
88         else tet_result(TET_FAIL);
89 }