summaryrefslogtreecommitdiff
path: root/TC/unit/utc_SensorFW_sf_get_data_func.c
blob: e1f5a12826903370e03a17b0efc3e9a2261d248d (plain)
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
#include <tet_api.h>
#include <sensor.h>
#include <stdlib.h>

int handle = 0;
sensor_data_t* values;

static void startup(void);
static void cleanup(void);

void (*tet_startup)(void) = startup;
void (*tet_cleanup)(void) = cleanup;

static void utc_SensorFW_sf_get_data_func_01(void);
static void utc_SensorFW_sf_get_data_func_02(void);

enum {
	POSITIVE_TC_IDX = 0x01,
	NEGATIVE_TC_IDX,
};

struct tet_testlist tet_testlist[] = {
	{ utc_SensorFW_sf_get_data_func_01, POSITIVE_TC_IDX },
	{ utc_SensorFW_sf_get_data_func_02, NEGATIVE_TC_IDX },
	{ NULL, 0},
};

static void startup(void)
{
	handle = sf_connect(ACCELEROMETER_SENSOR);
	sf_start(handle,0);
	
}

static void cleanup(void)
{
	sf_stop(handle);
	sf_disconnect(handle);
}

/**
 * @brief Positive test case of sf_get_data()
 */
static void utc_SensorFW_sf_get_data_func_01(void)
{
	int r = 0;

	values = (sensor_data_t*)malloc(sizeof(sensor_data_t));

   	r = sf_get_data(handle, ACCELEROMETER_BASE_DATA_SET, values);

	if (r < 0) {
		tet_infoline("sf_get_data() failed in positive test case");
		tet_result(TET_FAIL);
		return;
	}
	tet_result(TET_PASS);
}

/**
 * @brief Negative test case of ug_init sf_get_data()
 */
static void utc_SensorFW_sf_get_data_func_02(void)
{
	int r = 0;

//	values = (sensor_data_t*)malloc(sizeof(sensor_data_t));
	
	r = sf_get_data(300, NULL, values);

	printf("n r = %d\n", r);
	
	if (r > 0) {
		tet_infoline("sf_get_data() failed in negative test case");
		tet_result(TET_FAIL);
		return;
	}
	tet_result(TET_PASS);
}