Git init
[framework/location/libslp-location.git] / TC / unit / utc_location_stop.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_stop_01();
31 static void utc_location_stop_02();
32
33 struct tet_testlist tet_testlist[] = {
34         {utc_location_stop_01,1},
35         {utc_location_stop_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         ret = location_start(loc);      
47         tet_printf("\n TC startup");
48 }
49
50 static void cleanup()
51 {       
52         if( loc ){
53                 location_stop(loc);
54                 location_free(loc);
55         }
56         tet_printf("\n TC End");
57 }
58
59 static void
60 utc_location_stop_01()
61 {
62         ret = location_stop(loc);
63
64         tet_printf("Returned value: %d", ret);
65         if (ret == LOCATION_ERROR_NONE) tet_result(TET_PASS);
66         else tet_result(TET_FAIL);
67 }
68
69 static void
70 utc_location_stop_02()
71 {
72         location_start(loc);
73         ret = location_stop(NULL);
74         tet_printf("Returned value: %d", ret);
75         if (ret == LOCATION_ERROR_PARAMETER) tet_result(TET_PASS);
76         else tet_result(TET_FAIL);
77 }
78