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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
|
/*
* 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 <tet_api.h>
#include <media/camera.h>
#include <stdio.h>
#include <glib.h>
#include <pthread.h>
#define MY_ASSERT( fun , test , msg ) \
{\
if( !test ) \
dts_fail(fun , msg ); \
}
static GMainLoop *g_mainloop = NULL;
static GThread *event_thread;
static void startup(void);
static void cleanup(void);
void (*tet_startup)(void) = startup;
void (*tet_cleanup)(void) = cleanup;
static void utc_media_camera_create_negative(void);
static void utc_media_camera_create_positive(void);
static void utc_media_camera_destroy_negative(void);
static void utc_media_camera_destroy_positive(void);
static void utc_media_camera_start_preview_negative(void);
static void utc_media_camera_start_preview_positive(void);
static void utc_media_camera_stop_preview_negative(void);
static void utc_media_camera_stop_preview_positive(void);
static void utc_media_camera_start_capture_negative(void);
static void utc_media_camera_start_capture_positive(void);
static void utc_media_camera_get_state_negative(void);
static void utc_media_camera_get_state_positive(void);
static void utc_media_camera_start_focusing_negative(void);
static void utc_media_camera_start_focusing_positive(void);
static void utc_media_camera_cancel_focusing_negative(void);
static void utc_media_camera_cancel_focusing_positive(void);
struct tet_testlist tet_testlist[] = {
{utc_media_camera_create_negative , 1},
{utc_media_camera_create_positive , 2},
{utc_media_camera_destroy_negative , 3},
{utc_media_camera_destroy_positive , 4},
{utc_media_camera_start_preview_negative , 5},
{utc_media_camera_start_preview_positive , 6},
{utc_media_camera_stop_preview_negative , 7},
{utc_media_camera_stop_preview_positive , 8},
{utc_media_camera_get_state_negative , 9},
{utc_media_camera_get_state_positive , 10},
{utc_media_camera_start_focusing_negative ,11},
{utc_media_camera_start_focusing_positive , 12},
{utc_media_camera_cancel_focusing_negative , 13},
{utc_media_camera_cancel_focusing_positive , 14},
{utc_media_camera_start_capture_negative , 15},
{utc_media_camera_start_capture_positive , 16},
{ NULL, 0 },
};
gpointer GmainThread(gpointer data){
g_mainloop = g_main_loop_new (NULL, 0);
g_main_loop_run (g_mainloop);
return NULL;
}
static void startup(void)
{
if( !g_thread_supported() )
{
g_thread_init(NULL);
}
GError *gerr = NULL;
event_thread = g_thread_create(GmainThread, NULL, 1, &gerr);
}
static void cleanup(void)
{
g_main_loop_quit (g_mainloop);
g_thread_join(event_thread);
}
static void utc_media_camera_create_negative(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret ;
ret = camera_create(CAMERA_DEVICE_CAMERA0, NULL);
MY_ASSERT(__func__ , ret != 0 , "NULL is not allowed");
dts_pass(__func__, "PASS");
}
static void utc_media_camera_create_positive(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret ;
camera_h camera;
ret = camera_create(CAMERA_DEVICE_CAMERA0, &camera);
MY_ASSERT(__func__ , ret == 0 , "create fail");
camera_destroy(camera);
dts_pass(__func__, "PASS");
}
static void utc_media_camera_destroy_negative(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret;
ret = camera_destroy(NULL);
MY_ASSERT(__func__ , ret != 0 , "NULL is not allowed");
dts_pass(__func__, "PASS");
}
static void utc_media_camera_destroy_positive(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret ;
camera_h camera;
ret = camera_create(CAMERA_DEVICE_CAMERA0, &camera);
MY_ASSERT(__func__ , ret == 0 , "camera create fail");
ret = camera_destroy(camera);
MY_ASSERT(__func__ , ret == 0 , "camera destroy is faild");
dts_pass(__func__, "PASS");
}
static void utc_media_camera_start_preview_negative(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret ;
ret = camera_start_preview(NULL);
dts_check_ne(__func__, ret, CAMERA_ERROR_NONE, "NULL is not allowed");
}
static void utc_media_camera_start_preview_positive(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret;
camera_h camera;
ret = camera_create(CAMERA_DEVICE_CAMERA0, &camera);
MY_ASSERT(__func__, ret == CAMERA_ERROR_NONE, "camera create is faild");
ret = camera_start_preview(camera);
MY_ASSERT(__func__, ret == CAMERA_ERROR_NONE, "camera start preview is faild");
camera_stop_preview(camera);
camera_destroy(camera);
dts_pass(__func__, "PASS");
}
static void utc_media_camera_stop_preview_negative(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret;
camera_h camera;
ret = camera_create(CAMERA_DEVICE_CAMERA0, &camera);
MY_ASSERT(__func__, ret == CAMERA_ERROR_NONE, "camera create is faild");
ret = camera_stop_preview(camera);
MY_ASSERT(__func__, ret != CAMERA_ERROR_NONE, "invalid state");
camera_destroy(camera);
dts_pass(__func__, "PASS");
}
static void utc_media_camera_stop_preview_positive(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret;
camera_h camera;
ret = camera_create(CAMERA_DEVICE_CAMERA0, &camera);
ret = camera_start_preview(camera);
printf("------------ camera_start_preview %x\n", ret);
MY_ASSERT(__func__ , ret == CAMERA_ERROR_NONE, "camera start preview is faild");
ret = camera_stop_preview(camera);
MY_ASSERT(__func__, ret == CAMERA_ERROR_NONE, "camera_stop_preview is faild");
camera_destroy(camera);
dts_pass(__func__, "PASS");
}
static void utc_media_camera_start_capture_negative(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret;
camera_h camera;
ret = camera_create(CAMERA_DEVICE_CAMERA0, &camera);
MY_ASSERT(__func__, ret == CAMERA_ERROR_NONE, "camera create is faild");
ret = camera_start_capture(camera, NULL, NULL, NULL);
MY_ASSERT(__func__, ret !=CAMERA_ERROR_NONE, "invalid state");
ret = camera_destroy(camera);
printf("---------------utc_media_camera_start_capture_negative-------------camera_destroy ret = %x\n", ret);
dts_pass(__func__, "PASS");
}
static void utc_media_camera_start_capture_positive(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret;
camera_h camera;
ret = camera_create(CAMERA_DEVICE_CAMERA0, &camera);
camera_set_display(camera, CAMERA_DISPLAY_TYPE_X11,0);
ret = camera_start_preview(camera);
printf("------------ camera_start_preview %x\n", ret);
MY_ASSERT(__func__, ret == CAMERA_ERROR_NONE, "camera start preview is faild");
ret = camera_start_capture(camera, NULL, NULL, NULL);
MY_ASSERT(__func__, ret==CAMERA_ERROR_NONE, "camera_start_capture is faild");
sleep(10);
camera_state_e state;
camera_get_state(camera, &state);
printf("----------camera state = %d\n", state);
ret = camera_start_preview(camera);
printf(" ---camera_start_preview %x\n", ret);
ret = camera_stop_preview(camera);
printf(" ---camera_stop_preview %x\n", ret);
ret = camera_destroy(camera);
printf(" ---camera_destroy %x\n", ret);
printf("---------------%s- end---------------------\n", __func__);
dts_pass(__func__, "PASS");
}
static void utc_media_camera_get_state_negative(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret;
camera_h camera;
ret = camera_create(CAMERA_DEVICE_CAMERA0, &camera);
ret = camera_get_state(camera, NULL);
MY_ASSERT(__func__, ret!=CAMERA_ERROR_NONE, "invalid state");
camera_destroy(camera);
dts_pass(__func__, "PASS");
}
static void utc_media_camera_get_state_positive(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret;
camera_h camera;
camera_state_e state;
ret = camera_create(CAMERA_DEVICE_CAMERA0, &camera);
ret = camera_get_state(camera, &state);
MY_ASSERT(__func__, ret==CAMERA_ERROR_NONE, "camera_get_state fail");
camera_destroy(camera);
dts_pass(__func__, "PASS");
}
static void utc_media_camera_start_focusing_negative(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret;
camera_h camera;
camera_create(CAMERA_DEVICE_CAMERA0, &camera);
ret = camera_start_focusing(camera, false);
MY_ASSERT(__func__, ret != CAMERA_ERROR_NONE, "invalid state");
printf("-------------camera_start_focusing %x\n", ret);
ret = camera_destroy(camera);
printf("-------------camera_destroy %x\n", ret);
dts_pass(__func__, "PASS");
}
static void utc_media_camera_start_focusing_positive(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret;
camera_h camera;
ret = camera_create(CAMERA_DEVICE_CAMERA0, &camera);
ret = camera_start_preview(camera);
printf("-------------------------- camera_start_preview ret = %x\n", ret);
MY_ASSERT(__func__, ret == CAMERA_ERROR_NONE, "create camera fail");
ret = camera_start_focusing(camera, false);
printf("-------------------------- camera_start_focusing ret = %x\n", ret);
MY_ASSERT(__func__, ret==CAMERA_ERROR_NONE, "fail focusing");
ret = camera_stop_preview(camera);
printf("--------- camera_stop_preview %x\n", ret);
ret = camera_destroy(camera);
printf("--------- camera_destroy %x\n", ret);
dts_pass(__func__, "PASS");
}
static void utc_media_camera_cancel_focusing_negative(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret;
camera_h camera;
ret = camera_create(CAMERA_DEVICE_CAMERA0, &camera);
MY_ASSERT(__func__, ret == CAMERA_ERROR_NONE, "create camera fail");
ret = camera_cancel_focusing(camera);
printf("---- camera_cancel_focusing %x\n", ret);
MY_ASSERT(__func__, ret != CAMERA_ERROR_NONE, "invalid state");
camera_destroy(camera);
dts_pass(__func__, "PASS");
}
static void utc_media_camera_cancel_focusing_positive(void)
{
fprintf(stderr, "--------------- %s - START --------------\n", __func__);
int ret;
camera_h camera;
ret = camera_create(CAMERA_DEVICE_CAMERA0, &camera);
printf("------ camera_create %x\n", ret);
ret = camera_start_preview(camera);
printf("------ camera_start_preview %x\n", ret);
ret = camera_start_focusing(camera, false);
printf("------ camera_start_focusing %x\n", ret);
MY_ASSERT(__func__, ret == CAMERA_ERROR_NONE, "prepare fail");
ret = camera_cancel_focusing(camera);
MY_ASSERT(__func__, ret == CAMERA_ERROR_NONE, "cancel focusing fail");
camera_stop_preview(camera);
camera_destroy(camera);
dts_pass(__func__, "PASS");
}
|