summaryrefslogtreecommitdiff
path: root/test/mm_radio_testsuite.c
blob: d9b50cf67db5010a1642ba665ef1750cce9032d4 (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
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
/*
 * libmm-radio
 *
 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
 *
 * Contact: JongHyuk Choi <jhchoi.choi@samsung.com>, YoungHwan An <younghwan_.an@samsung.com>
 *
 * 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.
 *
 */

/* testsuite for mm-radio library */
#include <stdlib.h>
#include <stdio.h>


#include "mm_radio.h"
#include "mm_radio_test_type.h"
#include "mm_radio_rt_api_test.h"

#define DEFAULT_TEST_FREQ	107700

/* test items...*/
int __test_radio_init(void);
int __test_radio_listen_gorealra(void);
int __test_repeat_init_release(void);
int __test_repeat_start_stop(void);
int __test_repeat_seek(void);
int __test_repeat_whole(void);
int __test_manual_api_calling(void);
int __test_radio_hw_debug(void);

static int __msg_callback(int message, void *param, void *user_param);

/* functions*/
static void __print_menu(void);
static void __run_test(int key);

/* list of tests*/
test_item_t g_tests[100] =
{
	/* menu string : short string to be displayed to menu
	     description : detailed description
	     test function :  a pointer to a actual test function
	     0 : to be filled with return value of test function
	 */
	{
		"init test",
  		"check radio init function",
  		__test_radio_init,
      	0
	},

	{
		"listening gorealra",
  		"let's listen to the gorealra!",
  		__test_radio_listen_gorealra,
      	0
	},

	{
		"repeat_init_release",
  		"repeat init and release and check if it working and memory usage increment",
  		__test_repeat_init_release,
      	0
	},

	{
		"repeat_start_stop",
  		"repeat start and stop and check if it working and memory usage increment",
  		__test_repeat_start_stop,
      	0
	},

	{
		"repeat_seek",
  		"repeat seek and check if it working and memory usage increment",
  		__test_repeat_seek,
      	0
	},

	{
		"repeat_whole",
  		"repeat whole radio sequence and check if it working and memory usage increment",
  		__test_repeat_whole,
      	0
	},

	{
		"manual api calling test",
  		"mapping each api to each test manu. just like other testsuite. try to reproduce the bugs with it.",
  		__test_manual_api_calling,
      	0
	},

 	/* add tests here*/

 	/* NOTE : do not remove this last item */
 	{"end", "", NULL, 0},
};

int g_num_of_tests = 0;

int main(int argc, char **argv)
{
	int key = 0;

	do {
		__print_menu();

		do {
			key = getchar();
			
			if ( key >= '0' && key <= '9')
			{
				__run_test( key - '0' );
			}
		}while ( key == '\n' );
	}while(key != 'q' && key == 'Q');
	
	printf("radio test client finished\n");

	return 0;
}

void __print_menu(void)
{
	int i = 0;

	printf("\n\nFMRadio testing menu\n");
	printf("------------------------------------------\n");

	for ( i = 0; g_tests[i].func; i++ )
	{
		printf( "[%d] %s\n", i, g_tests[i].menu_string );
	}
	printf("[q] quit\n");

	g_num_of_tests = i;

	printf("Choose one : ");
}

void __run_test(int key)
{
	int ret = 0;

	/* check index */
	printf("#tests : %d    key : %d\n", g_num_of_tests, key);
	if ( key >= g_num_of_tests || key < 0 )
	{
		printf("unassigned key has pressed : %d\n", key);
		return;
	}

	/* display description*/
	printf( "excuting test : %s\n", g_tests[key].menu_string );
	printf( "description : %s\n", g_tests[key].description );

	/* calling test function*/
	ret = g_tests[key].func();

	g_tests[key].result =  ret;

	if ( ret )
	{
		printf( "TEST FAILED. ret code : %d\n", g_tests[key].result);
	}
	else
	{
		printf( "TEST SUCCEDED. ret code : %d\n", g_tests[key].result);
	}
}

static int __msg_callback(int message, void *pParam, void *user_param)
{
	MMMessageParamType* param = (MMMessageParamType*)pParam;
	MMHandleType radio = (MMHandleType) user_param;
	int ret = 0;

	printf("incomming message : %d\n", message);

	switch(message)
	{
	case MM_MESSAGE_STATE_CHANGED:
		printf("MM_MESSAGE_STATE_CHANGED: current : %d    old : %d\n"
				, param->state.current, param->state.previous);
		break;
	case MM_MESSAGE_RADIO_SCAN_START:
		printf("MM_MESSAGE_RADIO_SCAN_START\n");
		break;
	case MM_MESSAGE_RADIO_SCAN_INFO:
		assert(param);
		printf("MM_MESSAGE_RADIO_SCAN_INFO : freq : %d KHz\n", param->radio_scan.frequency);
		break;
	case MM_MESSAGE_RADIO_SCAN_STOP:
		printf("MM_MESSAGE_RADIO_SCAN_STOP\n");
		break;
	case MM_MESSAGE_RADIO_SCAN_FINISH:
		printf("MM_MESSAGE_RADIO_SCAN_FINISHED\n");
		RADIO_TEST__( mm_radio_scan_stop(radio); )
		break;
	case MM_MESSAGE_RADIO_SEEK_START:
			printf("MM_MESSAGE_RADIO_SEEK_START\n");
			break;
	case MM_MESSAGE_RADIO_SEEK_FINISH:
		printf("MM_MESSAGE_RADIO_SEEK_FINISHED : freq : %d KHz\n", param->radio_scan.frequency);
		break;
	case MM_MESSAGE_STATE_INTERRUPTED:
		printf("MM_MESSAGE_STATE_INTERRUPTED code - %d\n", param->code);
		break;
	case MM_MESSAGE_READY_TO_RESUME:
		printf("MM_MESSAGE_READY_TO_RESUME\n");
		RADIO_TEST__( mm_radio_start(radio); )
		break;
	default:
		printf("ERROR : unknown message received!\n");
		break;
	}

	return true;
}

/* test items...*/
int __test_radio_init(void)
{
	printf("%s\n", __FUNCTION__);

	int ret = MM_ERROR_NONE;
	MMHandleType radio = 0;

	RADIO_TEST__(	mm_radio_create(&radio);	)
	RADIO_TEST__( mm_radio_set_message_callback( radio, (MMMessageCallback)__msg_callback, (void*)radio ); )
	RADIO_TEST__( mm_radio_realize(radio); )
	RADIO_TEST__( mm_radio_unrealize(radio); )
	RADIO_TEST__( mm_radio_destroy(radio); )
	return ret;
}

int __test_radio_listen_gorealra(void)
{
	printf("%s\n", __FUNCTION__);

	int ret = MM_ERROR_NONE;
	MMHandleType radio = 0;

	RADIO_TEST__(	mm_radio_create(&radio);	)
	RADIO_TEST__( mm_radio_set_message_callback( radio, (MMMessageCallback)__msg_callback, (void*)radio ); )
	RADIO_TEST__( mm_radio_realize(radio); )
	RADIO_TEST__( mm_radio_set_frequency( radio, DEFAULT_TEST_FREQ ); )
	RADIO_TEST__( mm_radio_start(radio); )

	return ret;
}

int __test_repeat_init_release(void)
{
	printf("%s\n", __FUNCTION__);

	int ret = MM_ERROR_NONE;
	int cnt = 0;
	MMHandleType radio = 0;

	while ( 1 )
	{
		RADIO_TEST__(	mm_radio_create(&radio);	)
		RADIO_TEST__( mm_radio_set_message_callback( radio, (MMMessageCallback)__msg_callback, (void*)radio ); )
		RADIO_TEST__( mm_radio_realize(radio); )
		RADIO_TEST__( mm_radio_unrealize(radio); )
		RADIO_TEST__( mm_radio_destroy(radio); )

		cnt++;

		printf("%s : repeat count : %d\n", __FUNCTION__, cnt);
	}

	return 0;
}

int __test_repeat_start_stop(void)
{
	printf("%s\n", __FUNCTION__);
	int ret = MM_ERROR_NONE;
	int cnt = 0;
	MMHandleType radio = 0;

	RADIO_TEST__(	mm_radio_create(&radio);	)
	RADIO_TEST__( mm_radio_set_message_callback( radio, (MMMessageCallback)__msg_callback, (void*)radio ); )
	RADIO_TEST__( mm_radio_realize(radio); )
	RADIO_TEST__( mm_radio_set_frequency( radio, DEFAULT_TEST_FREQ ); )

	while(1)
	{
		RADIO_TEST__( mm_radio_start(radio); )
		RADIO_TEST__( mm_radio_stop(radio); )

		cnt++;

		printf("%s : repeat count : %d\n", __FUNCTION__, cnt);
	}

	return 0;
}

int __test_repeat_seek(void)
{
	printf("__test_repeat_seek\n");
	return 0;
}

int __test_repeat_whole(void)
{
	printf("__test_repeat_whole\n");
	return 0;
}

int __test_manual_api_calling(void)
{

	mm_radio_rt_api_test();

	return 0;
}