Release version 1.13.4
[platform/core/appfw/app-core.git] / TC / unit / utc_ApplicationFW_appcore_measure_time_from_func.c
1 /*
2  *  app-core
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Jayoun Lee <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21 #include <tet_api.h>
22 #include <appcore-common.h>
23 #include <stdlib.h>
24 #include <sys/time.h>
25 #include <stdio.h>
26
27 #define APPCORE_TESTCASE "APPCORE_TESTCASE"
28
29 static void startup(void);
30 static void cleanup(void);
31
32 void (*tet_startup)(void) = startup;
33 void (*tet_cleanup)(void) = cleanup;
34
35 static void utc_ApplicationFW_appcore_measure_time_from_func_01(void);
36
37 enum {
38         POSITIVE_TC_IDX = 0x01,
39         NEGATIVE_TC_IDX,
40 };
41
42 struct tet_testlist tet_testlist[] = {
43         { utc_ApplicationFW_appcore_measure_time_from_func_01, POSITIVE_TC_IDX },
44         { NULL, 0},
45 };
46
47 static void startup(void)
48 {
49         struct timeval tv;
50         char buf[1024];
51
52         gettimeofday(&tv, NULL);
53
54         snprintf(buf, sizeof(buf), "%d %d", (int)tv.tv_sec, (int)tv.tv_usec);
55         setenv(APPCORE_TESTCASE, buf, 1);
56 }
57
58 static void cleanup(void)
59 {
60 }
61
62 /**
63  * @brief Positive test case of appcore_measure_time_from()
64  */
65 static void utc_ApplicationFW_appcore_measure_time_from_func_01(void)
66 {
67         int r = 0;
68
69         r = appcore_measure_time_from(APPCORE_TESTCASE);
70         if (!r) {
71                 tet_infoline("appcore_measure_time_from() failed in positive test case");
72                 tet_result(TET_FAIL);
73                 return;
74         }
75
76         unsetenv(APPCORE_TESTCASE);
77
78         r = appcore_measure_time_from(APPCORE_TESTCASE);
79         if (r) {
80                 tet_infoline("appcore_measure_time_from() failed in positive test case");
81                 tet_result(TET_FAIL);
82                 return;
83         }
84
85         tet_result(TET_PASS);
86 }
87