forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfast-get-tests.c
More file actions
192 lines (151 loc) · 3.68 KB
/
fast-get-tests.c
File metadata and controls
192 lines (151 loc) · 3.68 KB
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
// SPDX-License-Identifier: BSD-3-Clause
//
// Copyright(c) 2024 Intel Corporation. All rights reserved.
//
// Author: Jyri Sarha <[email protected]>
#include <sof/lib/fast-get.h>
#include <rtos/sof.h>
#include <rtos/alloc.h>
#include <sof/lib/mm_heap.h>
#include <sof/lib/memory.h>
#include <sof/common.h>
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <cmocka.h>
#include <assert.h>
static const int testdata[33][100] = {
{
1, 2, 3, 4, 5, 6, 7, 9, 0,
1, 2, 3, 4, 5, 6, 7, 9, 0,
1, 2, 3, 4, 5, 6, 7, 9, 0,
1, 2, 3, 4, 5, 6, 7, 9, 0,
1, 2, 3, 4, 5, 6, 7, 9, 0,
1, 2, 3, 4, 5, 6, 7, 9, 0,
1, 2, 3, 4, 5, 6, 7, 9, 0,
1, 2, 3, 4, 5, 6, 7, 9, 0,
1, 2, 3, 4, 5, 6, 7, 9, 0,
1, 2, 3, 4, 5, 6, 7, 9, 0,
},
{ 2 },
{ 3 },
{ 4 },
{ 5 },
{ 6 },
{ 7 },
{ 8 },
{ 9 },
{ 10 },
{ 11 },
{ 12 },
{ 13 },
{ 14 },
{ 15 },
{ 16 },
{ 17 },
{ 18 },
{ 19 },
{ 20 },
{ 21 },
{ 23 },
{ 24 },
{ 25 },
{ 26 },
{ 27 },
{ 28 },
{ 29 },
{ 30 },
{ 31 },
{ 32 },
{ 33 },
};
static void test_simple_fast_get_put(void **state)
{
const void *ret;
(void)state; /* unused */
ret = fast_get(NULL, testdata[0], sizeof(testdata[0]));
assert(ret);
assert(!memcmp(ret, testdata[0], sizeof(testdata[0])));
fast_put(NULL, NULL, ret);
}
static void test_fast_get_size_missmatch_test(void **state)
{
const void *ret[2];
(void)state; /* unused */
ret[0] = fast_get(NULL, testdata[0], sizeof(testdata[0]));
assert(ret[0]);
assert(!memcmp(ret[0], testdata[0], sizeof(testdata[0])));
ret[1] = fast_get(NULL, testdata[0], sizeof(testdata[0]) + 1);
assert(!ret[1]);
fast_put(NULL, NULL, ret);
}
static void test_over_32_fast_gets_and_puts(void **state)
{
const void *copy[ARRAY_SIZE(testdata)];
int i;
(void)state; /* unused */
for (i = 0; i < ARRAY_SIZE(copy); i++)
copy[i] = fast_get(NULL, testdata[i], sizeof(testdata[0]));
for (i = 0; i < ARRAY_SIZE(copy); i++)
assert(!memcmp(copy[i], testdata[i], sizeof(testdata[0])));
for (i = 0; i < ARRAY_SIZE(copy); i++)
fast_put(NULL, NULL, copy[i]);
}
static void test_fast_get_refcounting(void **state)
{
const void *copy[2][ARRAY_SIZE(testdata)];
int i;
(void)state; /* unused */
for (i = 0; i < ARRAY_SIZE(copy[0]); i++)
copy[0][i] = fast_get(NULL, testdata[i], sizeof(testdata[0]));
for (i = 0; i < ARRAY_SIZE(copy[0]); i++)
copy[1][i] = fast_get(NULL, testdata[i], sizeof(testdata[0]));
for (i = 0; i < ARRAY_SIZE(copy[0]); i++)
assert(copy[0][i] == copy[1][i]);
for (i = 0; i < ARRAY_SIZE(copy[0]); i++)
assert(!memcmp(copy[0][i], testdata[i], sizeof(testdata[0])));
for (i = 0; i < ARRAY_SIZE(copy[0]); i++)
fast_put(NULL, NULL, copy[0][i]);
for (i = 0; i < ARRAY_SIZE(copy[0]); i++)
assert(!memcmp(copy[1][i], testdata[i], sizeof(testdata[0])));
for (i = 0; i < ARRAY_SIZE(copy[0]); i++)
fast_put(NULL, NULL, copy[1][i]);
}
int main(void)
{
const struct CMUnitTest tests[] = {
cmocka_unit_test(test_simple_fast_get_put),
cmocka_unit_test(test_fast_get_size_missmatch_test),
cmocka_unit_test(test_over_32_fast_gets_and_puts),
cmocka_unit_test(test_fast_get_refcounting),
};
cmocka_set_message_output(CM_OUTPUT_TAP);
return cmocka_run_group_tests(tests, NULL, NULL);
}
void *__wrap_rzalloc(uint32_t flags, size_t bytes);
void *__wrap_rmalloc(uint32_t flags, size_t bytes);
void __wrap_rfree(void *ptr);
void *__wrap_rzalloc(uint32_t flags, size_t bytes)
{
void *ret;
(void)flags;
ret = malloc(bytes);
assert(ret);
memset(ret, 0, bytes);
return ret;
}
void *__wrap_rmalloc(uint32_t flags, size_t bytes)
{
void *ret;
(void)flags;
ret = malloc(bytes);
assert(ret);
return ret;
}
void __wrap_rfree(void *ptr)
{
free(ptr);
}