summaryrefslogtreecommitdiff
path: root/tests/test_format_cache.c
blob: 2ed9780c2e92752f35ee76acd9b90e2fdfaf81ba (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
/*
 * Asterisk -- An open source telephony toolkit.
 *
 * Copyright (C) 2014, Digium, Inc.
 *
 * Joshua Colp <jcolp@digium.com>
 *
 * See http://www.asterisk.org for more information about
 * the Asterisk project. Please do not directly contact
 * any of the maintainers of this project for assistance;
 * the project provides a web site, mailing lists and IRC
 * channels for your use.
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License Version 2. See the LICENSE file
 * at the top of the source tree.
 */

/*!
 * \file
 * \brief Format Cache API Unit Tests
 *
 * \author Joshua Colp <jcolp@digium.com>
 *
 */

/*** MODULEINFO
	<depend>TEST_FRAMEWORK</depend>
	<support_level>core</support_level>
 ***/

#include "asterisk.h"

#include "asterisk/test.h"
#include "asterisk/module.h"
#include "asterisk/codec.h"
#include "asterisk/format.h"
#include "asterisk/format_cache.h"

AST_TEST_DEFINE(format_cache_set)
{
	RAII_VAR(struct ast_codec *, codec, NULL, ao2_cleanup);
	RAII_VAR(struct ast_format *, format, NULL, ao2_cleanup);

	switch (cmd) {
	case TEST_INIT:
		info->name = "format_cache_set";
		info->category = "/main/format_cache/";
		info->summary = "format cache add unit test";
		info->description =
			"Test that adding of a cached format succeeds";
		return AST_TEST_NOT_RUN;
	case TEST_EXECUTE:
		break;
	}

	codec = ast_codec_get("ulaw", AST_MEDIA_TYPE_AUDIO, 8000);
	if (!codec) {
		ast_test_status_update(test, "Could not retrieve built-in ulaw codec\n");
		return AST_TEST_FAIL;
	}

	format = ast_format_create_named("ulaw@20_1", codec);
	if (!format) {
		ast_test_status_update(test, "Could not create format using built-in codec\n");
		return AST_TEST_FAIL;
	}

	if (ast_format_cache_set(format)) {
		ast_test_status_update(test, "Could not add just created format to cache\n");
		return AST_TEST_FAIL;
	}

	return AST_TEST_PASS;
}

AST_TEST_DEFINE(format_cache_set_duplicate)
{
	RAII_VAR(struct ast_codec *, codec, NULL, ao2_cleanup);
	RAII_VAR(struct ast_format *, format, NULL, ao2_cleanup);

	switch (cmd) {
	case TEST_INIT:
		info->name = "format_cache_set_duplicate";
		info->category = "/main/format_cache/";
		info->summary = "format cache add unit test";
		info->description =
			"Test that adding of a cached format multiple times succeeds";
		return AST_TEST_NOT_RUN;
	case TEST_EXECUTE:
		break;
	}

	codec = ast_codec_get("ulaw", AST_MEDIA_TYPE_AUDIO, 8000);
	if (!codec) {
		ast_test_status_update(test, "Could not retrieve built-in ulaw codec\n");
		return AST_TEST_FAIL;
	}

	format = ast_format_create_named("ulaw@20_2", codec);
	if (!format) {
		ast_test_status_update(test, "Could not create format using built-in codec\n");
		return AST_TEST_FAIL;
	}

	if (ast_format_cache_set(format)) {
		ast_test_status_update(test, "Could not add just created format to cache\n");
		return AST_TEST_FAIL;
	}

	if (ast_format_cache_set(format)) {
		ast_test_status_update(test, "Failed to update cached format\n");
		return AST_TEST_FAIL;
	}

	return AST_TEST_PASS;
}

AST_TEST_DEFINE(format_cache_set_null)
{
	RAII_VAR(struct ast_codec *, codec, NULL, ao2_cleanup);
	RAII_VAR(struct ast_format *, format, NULL, ao2_cleanup);

	switch (cmd) {
	case TEST_INIT:
		info->name = "format_cache_set_null";
		info->category = "/main/format_cache/";
		info->summary = "format cache add unit test";
		info->description =
			"Test that adding a NULL or empty format to the cache does not succeed";
		return AST_TEST_NOT_RUN;
	case TEST_EXECUTE:
		break;
	}

	codec = ast_codec_get("ulaw", AST_MEDIA_TYPE_AUDIO, 8000);
	if (!codec) {
		ast_test_status_update(test, "Could not retrieve built-in ulaw codec\n");
		return AST_TEST_FAIL;
	}

	format = ast_format_create_named("", codec);
	if (!format) {
		ast_test_status_update(test, "Could not create format using built-in codec\n");
		return AST_TEST_FAIL;
	}

	if (!ast_format_cache_set(format)) {
		ast_test_status_update(test, "Successfully cached a format with an empty name\n");
		return AST_TEST_FAIL;
	}

	return AST_TEST_PASS;
}

AST_TEST_DEFINE(format_cache_get)
{
	RAII_VAR(struct ast_codec *, codec, NULL, ao2_cleanup);
	RAII_VAR(struct ast_format *, format, NULL, ao2_cleanup);
	RAII_VAR(struct ast_format *, cached, NULL, ao2_cleanup);

	switch (cmd) {
	case TEST_INIT:
		info->name = "format_cache_get";
		info->category = "/main/format_cache/";
		info->summary = "format cache get unit test";
		info->description =
			"Test that getting of a cached format succeeds";
		return AST_TEST_NOT_RUN;
	case TEST_EXECUTE:
		break;
	}

	codec = ast_codec_get("ulaw", AST_MEDIA_TYPE_AUDIO, 8000);
	if (!codec) {
		ast_test_status_update(test, "Could not retrieve built-in ulaw codec\n");
		return AST_TEST_FAIL;
	}

	format = ast_format_create_named("ulaw@20", codec);
	if (!format) {
		ast_test_status_update(test, "Could not create format using built-in codec\n");
		return AST_TEST_FAIL;
	}

	if (ast_format_cache_set(format)) {
		ast_test_status_update(test, "Could not add just created format to cache\n");
		return AST_TEST_FAIL;
	}

	cached = ast_format_cache_get("ulaw@20");
	if (!cached) {
		ast_test_status_update(test, "Failed to retrieve a format we just cached\n");
		return AST_TEST_FAIL;
	} else if (cached != format) {
		ast_test_status_update(test, "Returned cached format does not match format we just added\n");
		return AST_TEST_FAIL;
	}

	return AST_TEST_PASS;
}

AST_TEST_DEFINE(format_cache_get_nonexistent)
{
	RAII_VAR(struct ast_codec *, codec, NULL, ao2_cleanup);
	RAII_VAR(struct ast_format *, format, NULL, ao2_cleanup);
	RAII_VAR(struct ast_format *, cached, NULL, ao2_cleanup);

	switch (cmd) {
	case TEST_INIT:
		info->name = "format_cache_get_nonxistent";
		info->category = "/main/format_cache/";
		info->summary = "format cache get unit test";
		info->description =
			"Test that getting of a non-existent cached format does not succeed";
		return AST_TEST_NOT_RUN;
	case TEST_EXECUTE:
		break;
	}

	codec = ast_codec_get("ulaw", AST_MEDIA_TYPE_AUDIO, 8000);
	if (!codec) {
		ast_test_status_update(test, "Could not retrieve built-in ulaw codec\n");
		return AST_TEST_FAIL;
	}

	format = ast_format_create_named("ulaw@40", codec);
	if (!format) {
		ast_test_status_update(test, "Could not create format using built-in codec\n");
		return AST_TEST_FAIL;
	}

	if (ast_format_cache_set(format)) {
		ast_test_status_update(test, "Could not add just created format to cache\n");
		return AST_TEST_FAIL;
	}

	cached = ast_format_cache_get("ulaw@60");
	if (cached) {
		ast_test_status_update(test, "Retrieved a cached format when one should not have existed\n");
		return AST_TEST_FAIL;
	}

	cached = ast_format_cache_get("");
	if (cached) {
		ast_test_status_update(test, "Retrieved a cached format when we provided an empty name\n");
		return AST_TEST_FAIL;
	}

	cached = ast_format_cache_get(NULL);
	if (cached) {
		ast_test_status_update(test, "Retrieved a cached format when we provided a NULL name\n");
		return AST_TEST_FAIL;
	}

	return AST_TEST_PASS;
}

static int unload_module(void)
{
	AST_TEST_UNREGISTER(format_cache_set);
	AST_TEST_UNREGISTER(format_cache_set_duplicate);
	AST_TEST_UNREGISTER(format_cache_set_null);
	AST_TEST_UNREGISTER(format_cache_get);
	AST_TEST_UNREGISTER(format_cache_get_nonexistent);
	return 0;
}

static int load_module(void)
{
	AST_TEST_REGISTER(format_cache_set);
	AST_TEST_REGISTER(format_cache_set_duplicate);
	AST_TEST_REGISTER(format_cache_set_null);
	AST_TEST_REGISTER(format_cache_get);
	AST_TEST_REGISTER(format_cache_get_nonexistent);
	return AST_MODULE_LOAD_SUCCESS;
}

AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Format cache API test module");