-
Notifications
You must be signed in to change notification settings - Fork 737
/
Copy pathtest-queue.c
311 lines (230 loc) · 6.88 KB
/
test-queue.c
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
/*
Copyright (c) 2005-2008, Simon Howard
Permission to use, copy, modify, and/or distribute this software
for any purpose with or without fee is hereby granted, provided
that the above copyright notice and this permission notice appear
in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include "alloc-testing.h"
#include "framework.h"
#include "queue.h"
int variable1, variable2, variable3, variable4;
Queue *generate_queue(void)
{
Queue *queue;
int i;
queue = queue_new();
/* Add some values */
for (i = 0; i < 1000; ++i) {
queue_push_head(queue, &variable1);
queue_push_head(queue, &variable2);
queue_push_head(queue, &variable3);
queue_push_head(queue, &variable4);
}
return queue;
}
/* Test cases for the queue */
void test_queue_new_free(void)
{
int i;
Queue *queue;
/* Create and destroy a queue */
queue = queue_new();
queue_free(queue);
/* Add lots of values and then destroy */
queue = queue_new();
for (i = 0; i < 1000; ++i) {
queue_push_head(queue, &variable1);
}
queue_free(queue);
/* Test allocation when there is no free memory */
alloc_test_set_limit(0);
queue = queue_new();
assert(queue == NULL);
}
void test_queue_push_head(void)
{
Queue *queue;
int i;
queue = queue_new();
/* Add some values */
for (i = 0; i < 1000; ++i) {
queue_push_head(queue, &variable1);
queue_push_head(queue, &variable2);
queue_push_head(queue, &variable3);
queue_push_head(queue, &variable4);
}
assert(!queue_is_empty(queue));
/* Check values come out of the tail properly */
assert(queue_pop_tail(queue) == &variable1);
assert(queue_pop_tail(queue) == &variable2);
assert(queue_pop_tail(queue) == &variable3);
assert(queue_pop_tail(queue) == &variable4);
/* Check values come back out of the head properly */
assert(queue_pop_head(queue) == &variable4);
assert(queue_pop_head(queue) == &variable3);
assert(queue_pop_head(queue) == &variable2);
assert(queue_pop_head(queue) == &variable1);
queue_free(queue);
/* Test behavior when running out of memory. */
queue = queue_new();
alloc_test_set_limit(0);
assert(!queue_push_head(queue, &variable1));
queue_free(queue);
}
void test_queue_pop_head(void)
{
Queue *queue;
/* Check popping off an empty queue */
queue = queue_new();
assert(queue_pop_head(queue) == NULL);
queue_free(queue);
/* Pop off all the values from the queue */
queue = generate_queue();
while (!queue_is_empty(queue)) {
assert(queue_pop_head(queue) == &variable4);
assert(queue_pop_head(queue) == &variable3);
assert(queue_pop_head(queue) == &variable2);
assert(queue_pop_head(queue) == &variable1);
}
assert(queue_pop_head(queue) == NULL);
queue_free(queue);
}
void test_queue_peek_head(void)
{
Queue *queue;
/* Check peeking into an empty queue */
queue = queue_new();
assert(queue_peek_head(queue) == NULL);
queue_free(queue);
/* Pop off all the values from the queue, making sure that peek
* has the correct value beforehand */
queue = generate_queue();
while (!queue_is_empty(queue)) {
assert(queue_peek_head(queue) == &variable4);
assert(queue_pop_head(queue) == &variable4);
assert(queue_peek_head(queue) == &variable3);
assert(queue_pop_head(queue) == &variable3);
assert(queue_peek_head(queue) == &variable2);
assert(queue_pop_head(queue) == &variable2);
assert(queue_peek_head(queue) == &variable1);
assert(queue_pop_head(queue) == &variable1);
}
assert(queue_peek_head(queue) == NULL);
queue_free(queue);
}
void test_queue_push_tail(void)
{
Queue *queue;
int i;
queue = queue_new();
/* Add some values */
for (i = 0; i < 1000; ++i) {
queue_push_tail(queue, &variable1);
queue_push_tail(queue, &variable2);
queue_push_tail(queue, &variable3);
queue_push_tail(queue, &variable4);
}
assert(!queue_is_empty(queue));
/* Check values come out of the head properly */
assert(queue_pop_head(queue) == &variable1);
assert(queue_pop_head(queue) == &variable2);
assert(queue_pop_head(queue) == &variable3);
assert(queue_pop_head(queue) == &variable4);
/* Check values come back out of the tail properly */
assert(queue_pop_tail(queue) == &variable4);
assert(queue_pop_tail(queue) == &variable3);
assert(queue_pop_tail(queue) == &variable2);
assert(queue_pop_tail(queue) == &variable1);
queue_free(queue);
/* Test behavior when running out of memory. */
queue = queue_new();
alloc_test_set_limit(0);
assert(!queue_push_tail(queue, &variable1));
queue_free(queue);
}
void test_queue_pop_tail(void)
{
Queue *queue;
/* Check popping off an empty queue */
queue = queue_new();
assert(queue_pop_tail(queue) == NULL);
queue_free(queue);
/* Pop off all the values from the queue */
queue = generate_queue();
while (!queue_is_empty(queue)) {
assert(queue_pop_tail(queue) == &variable1);
assert(queue_pop_tail(queue) == &variable2);
assert(queue_pop_tail(queue) == &variable3);
assert(queue_pop_tail(queue) == &variable4);
}
assert(queue_pop_tail(queue) == NULL);
queue_free(queue);
}
void test_queue_peek_tail(void)
{
Queue *queue;
/* Check peeking into an empty queue */
queue = queue_new();
assert(queue_peek_tail(queue) == NULL);
queue_free(queue);
/* Pop off all the values from the queue, making sure that peek
* has the correct value beforehand */
queue = generate_queue();
while (!queue_is_empty(queue)) {
assert(queue_peek_tail(queue) == &variable1);
assert(queue_pop_tail(queue) == &variable1);
assert(queue_peek_tail(queue) == &variable2);
assert(queue_pop_tail(queue) == &variable2);
assert(queue_peek_tail(queue) == &variable3);
assert(queue_pop_tail(queue) == &variable3);
assert(queue_peek_tail(queue) == &variable4);
assert(queue_pop_tail(queue) == &variable4);
}
assert(queue_peek_tail(queue) == NULL);
queue_free(queue);
}
void test_queue_is_empty(void)
{
Queue *queue;
queue = queue_new();
assert(queue_is_empty(queue));
queue_push_head(queue, &variable1);
assert(!queue_is_empty(queue));
queue_pop_head(queue);
assert(queue_is_empty(queue));
queue_push_tail(queue, &variable1);
assert(!queue_is_empty(queue));
queue_pop_tail(queue);
assert(queue_is_empty(queue));
queue_free(queue);
}
/* clang-format off */
static UnitTestFunction tests[] = {
test_queue_new_free,
test_queue_push_head,
test_queue_pop_head,
test_queue_peek_head,
test_queue_push_tail,
test_queue_pop_tail,
test_queue_peek_tail,
test_queue_is_empty,
NULL
};
/* clang-format on */
int main(int argc, char *argv[])
{
run_tests(tests);
return 0;
}