summaryrefslogtreecommitdiff
path: root/TC/testcase/utc_uix_face_component_negative.c
blob: f72e71e7fdbad3a084a22a108b80f04a7ad3873c (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
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
158
159
160
161
162
/*
 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
 *
 * 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 <stdio.h>
#include <tet_api.h>

#include <face.h>

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

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

static void startup(void)
{
// TODO : How to copy sample image????
}

static void cleanup(void)
{
	/* end of TC */
}

static void utc_uix_face_component_create_negative(void)
{
	static const char szFunc[] = "face_component_create";

	int err = face_component_create(NULL);

	dts_check_lt(szFunc, err, FACE_ERROR_NONE);
}



static void utc_uix_face_component_destroy_negative(void)
{
	static const char szFunc[] = "face_component_destroy";

	int err;

	err = face_component_destroy(NULL);

	dts_check_lt(szFunc, err, FACE_ERROR_NONE);

}


static void utc_uix_face_component_get_face_rect_negative(void)
{
	static const char szFunc[] = "face_component_get_face_rect";

	int err;

	face_component_h face_component;

    err = face_component_create(&face_component);

	face_rect_s face;

	err = face_component_get_face_rect(NULL, &face);

	dts_check_lt(szFunc, err, FACE_ERROR_NONE);

	err = face_component_destroy(face_component);
}


static void utc_uix_face_component_get_left_eye_point_negative(void)
{
	static const char szFunc[] = "face_component_get_left_eye_point";

	int err;

	face_component_h face_component;

    err = face_component_create(&face_component);

	face_point_s point;

	err = face_component_get_left_eye_point(NULL, &point);

	dts_check_lt(szFunc, err, FACE_ERROR_NONE);

	err = face_component_get_left_eye_point(face_component, NULL);

	dts_check_lt(szFunc, err, FACE_ERROR_NONE);

	err = face_component_destroy(face_component);
}

static void utc_uix_face_component_get_right_eye_point_negative(void)
{
	static const char szFunc[] = "face_component_get_right_eye_point";

	int err;

	face_component_h face_component;

    err = face_component_create(&face_component);

	face_point_s point;

	err = face_component_get_right_eye_point(NULL, &point);

	dts_check_lt(szFunc, err, FACE_ERROR_NONE);

	err = face_component_get_right_eye_point(face_component, NULL);

	dts_check_lt(szFunc, err, FACE_ERROR_NONE);

	err = face_component_destroy(face_component);
}

static void utc_uix_face_component_get_mouse_rect_negative(void)
{
	static const char szFunc[] = "face_component_get_mouse_rect";

	int err;

	face_component_h face_component;

    err = face_component_create(&face_component);

	face_rect_s mouse;

	err = face_component_get_mouse_rect(face_component, NULL);

	dts_check_lt(szFunc, err, FACE_ERROR_NONE);

	err = face_component_get_mouse_rect(NULL, &mouse);

	dts_check_lt(szFunc, err, FACE_ERROR_NONE);

	err = face_component_destroy(face_component);
}


struct tet_testlist tet_testlist[] = {
    { utc_uix_face_component_create_negative, 1},
	{ utc_uix_face_component_destroy_negative, 2},
	{ utc_uix_face_component_get_face_rect_negative, 3},
	{ utc_uix_face_component_get_left_eye_point_negative, 4},
	{ utc_uix_face_component_get_right_eye_point_negative, 5},
	{ utc_uix_face_component_get_mouse_rect_negative, 6},
	{ NULL, 0},
};