1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
/*
* capi-system-device
* Copyright (c) 2012 Samsung Electronics Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <tet_api.h>
#include <device.h>
#define API_NAME_DEVICE_BATTERY_GET_PERCENT "device_battery_get_percent"
#define API_NAME_DEVICE_BATTERY_IS_FULL "device_battery_is_full"
#define API_NAME_DEVICE_BATTERY_IS_CHARGING "device_battery_is_charging"
#define API_NAME_DEVICE_BATTERY_SET_CB "device_battery_set_cb"
#define API_NAME_DEVICE_BATTERY_UNSET_CB "device_battery_unset_cb"
static void startup(void);
static void cleanup(void);
void (*tet_startup)(void) = startup;
void (*tet_cleanup)(void) = cleanup;
static void utc_system_device_battery_get_percent_p(void);
static void utc_system_device_battery_get_percent_n(void);
static void utc_system_device_battery_is_full_p(void);
static void utc_system_device_battery_is_full_n(void);
static void utc_system_device_battery_is_charging_p(void);
static void utc_system_device_battery_is_charging_n(void);
static void utc_system_device_battery_set_cb_p(void);
static void utc_system_device_battery_set_cb_n(void);
static void utc_system_device_battery_unset_cb_p(void);
enum {
POSITIVE_TC_IDX = 0x01,
NEGATIVE_TC_IDX,
};
struct tet_testlist tet_testlist[] = {
{ utc_system_device_battery_get_percent_p, POSITIVE_TC_IDX },
{ utc_system_device_battery_get_percent_n, NEGATIVE_TC_IDX },
{ utc_system_device_battery_is_full_p, POSITIVE_TC_IDX },
{ utc_system_device_battery_is_full_n, NEGATIVE_TC_IDX },
{ utc_system_device_battery_is_charging_p, POSITIVE_TC_IDX },
{ utc_system_device_battery_is_charging_n, NEGATIVE_TC_IDX },
{ utc_system_device_battery_set_cb_p, POSITIVE_TC_IDX },
{ utc_system_device_battery_set_cb_n, NEGATIVE_TC_IDX },
{ utc_system_device_battery_unset_cb_p, POSITIVE_TC_IDX },
{ NULL, 0},
};
static void startup(void)
{
/* start of TC */
}
static void cleanup(void)
{
/* end of TC */
}
/**
* @brief Positive test case of device_battery_get_percent()
*/
static void utc_system_device_battery_get_percent_p(void)
{
int percent = 0;
int error = DEVICE_ERROR_NONE;
error = device_battery_get_percent(&percent);
dts_check_eq(API_NAME_DEVICE_BATTERY_GET_PERCENT, error, DEVICE_ERROR_NONE);
}
/**
* @brief Negative test case of device_battery_get_percent()
*/
static void utc_system_device_battery_get_percent_n(void)
{
int error = DEVICE_ERROR_NONE;
error = device_battery_get_percent(NULL);
dts_check_ne(API_NAME_DEVICE_BATTERY_GET_PERCENT, error, DEVICE_ERROR_NONE);
}
/**
* @brief Positive test case of device_battery_is_full()
*/
static void utc_system_device_battery_is_full_p(void)
{
bool full;
int error = DEVICE_ERROR_NONE;
error = device_battery_is_full(&full);
dts_check_eq(API_NAME_DEVICE_BATTERY_IS_FULL, error, DEVICE_ERROR_NONE);
}
/**
* @brief Negative test case of device_battery_is_full()
*/
static void utc_system_device_battery_is_full_n(void)
{
int error = DEVICE_ERROR_NONE;
error = device_battery_is_full(NULL);
dts_check_ne(API_NAME_DEVICE_BATTERY_IS_FULL, error, DEVICE_ERROR_NONE);
}
static void utc_system_device_battery_is_charging_p(void)
{
bool charging;
int error = DEVICE_ERROR_NONE;
error = device_battery_is_charging(&charging);
dts_check_eq(API_NAME_DEVICE_BATTERY_IS_CHARGING, error, DEVICE_ERROR_NONE);
}
static void utc_system_device_battery_is_charging_n(void)
{
bool charging;
int error = DEVICE_ERROR_NONE;
error = device_battery_is_charging(NULL);
dts_check_ne(API_NAME_DEVICE_BATTERY_IS_CHARGING, error, DEVICE_ERROR_NONE);
}
static void battery_cb(int percent, void *user_data)
{
}
static void utc_system_device_battery_set_cb_p(void)
{
int error = device_battery_set_cb(battery_cb, NULL);
device_battery_unset_cb();
dts_check_eq(API_NAME_DEVICE_BATTERY_SET_CB, error, DEVICE_ERROR_NONE);
}
static void utc_system_device_battery_set_cb_n(void)
{
int error = device_battery_set_cb(NULL, NULL);
device_battery_unset_cb();
dts_check_ne(API_NAME_DEVICE_BATTERY_SET_CB, error, DEVICE_ERROR_NONE);
}
static void utc_system_device_battery_unset_cb_p(void)
{
device_battery_set_cb(battery_cb, NULL);
int error = device_battery_unset_cb();
dts_check_eq(API_NAME_DEVICE_BATTERY_SET_CB, error, DEVICE_ERROR_NONE);
}
|