summaryrefslogtreecommitdiff
path: root/src/tests/common/da_tests.c
blob: 627e8aa8016b0a95b1f51a87a8a4263115981118 (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
/*  Copyright (C) 2011 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "tests/common/da_tests.h"
#include "common/dynamic-array.h"
#include <unistd.h>
#include <urcu.h>

static int da_tests_count(int argc, char *argv[]);
static int da_tests_run(int argc, char *argv[]);

/*
 * Unit API.
 */
unit_api da_tests_api = {
	"Dynamic array",
	&da_tests_count,
	&da_tests_run
};

/*
 * Unit implementation.
 */

static const int DA_TEST_COUNT = 5;
static const int RCU_THREADS   = 3;
static const int DA_FRAGMENT = 10;
static const int DA_DEF_SIZE = 1000;
static const int DA_OPERATIONS = 1000;
enum Operations {
	DA_RESERVE = 0,
	DA_OCCUPY  = 1,
	DA_RELEASE = 2,
	DA_OPCOUNT = 3
};

static int da_tests_count(int argc, char *argv[])
{
	return DA_TEST_COUNT;
}

static void do_something(int loops)
{
	int i;
	int res = 1;

	static const int LOOPS = 10000;

	for (int j = 1; j <= LOOPS; ++j) {
		for (i = 1; i <= loops; ++i) {
			res *= i;
		}
	}
}

static void *test_rcu_routine(void *obj)
{
	rcu_register_thread();
	rcu_read_lock();

	do_something(1000);

	rcu_read_unlock();
	rcu_unregister_thread();

	return NULL;
}

static int test_rcu_threads()
{
	// Create threads
	pthread_t *threads = malloc(RCU_THREADS * sizeof(pthread_t));
	for (int i = 0; i < RCU_THREADS; ++i) {
		if (pthread_create(&threads[i], NULL, test_rcu_routine, NULL)) {
			diag("rcu: failed to create thread %d", i);
			free(threads);
			return 0;
		}
	}

	// Join threads
	void *pret = NULL;
	for (int i = 0; i < RCU_THREADS; ++i) {
		if (pthread_join(threads[i], &pret)) {
			diag("rcu: failed to join thread %d", i);
			free(threads);
			return 0;
		}
	}

	synchronize_rcu();
	free(threads);

	return 1;
}

static int test_da_init(da_array_t *arr)
{
	return da_initialize(arr, DA_DEF_SIZE, sizeof(uint)) == 0;
}

static int test_da_random_op(da_array_t *arr)
{
	unsigned seed = (unsigned)time(0);
	uint allocated = DA_DEF_SIZE;
	uint size = 0;

	for (int i = 0; i < DA_OPERATIONS; ++i) {
		int r = rand_r(&seed) % DA_OPCOUNT;
		int count = rand_r(&seed) % DA_FRAGMENT + 1;

		switch (r) {

			// Perform reserve operation
		case DA_RESERVE:
			if (da_reserve(arr, count) >= 0 &&
			                size <= allocated) {
				if ((allocated - size) < count) {
					allocated *= 2;
				}
			} else {
				diag("dynamic-array: da_reserve(%p, %d) failed"
				     " (size %d, alloc'd %d)", 
				     arr, count, size, allocated);
				return 0;
			}
			break;

			// Perform occupy operation
		case DA_OCCUPY:
			if (da_occupy(arr, count) == 0) {
				uint *items = (uint *) da_get_items(arr);
				for (int j = 0; j < da_get_count(arr); ++j) {
					items[j] = rand_r(&seed);
				}
				if (size <= allocated && 
				    (allocated - size) >= count) {
					size += count;
				} else {
					return 0;
				}
			} else {
				diag("dynamic-array: da_occupy(%p, %d) failed"
				     " (size %d, alloc'd %d)",
				     arr, count, size, allocated);
				return 0;
			}
			break;

			// Perform release operation
		case DA_RELEASE:
			if (arr->count > 0) {
				count = (rand_r(&seed) % DA_FRAGMENT) % arr->count;
				da_release(arr, count);

				if (size <= allocated && size >= count) {
					size -= count;
				} else {
					return 0;
				}
			}
			break;

		default:
			break;
		}

		// Check allocated / size
		if (allocated != arr->allocated || size != arr->count) {
			diag("dynamic-array: allocated memory %d (expected %d)"
			     " size %d (expected %d) mismatch",
			     arr->allocated, allocated, arr->count, size);
			return 0;
		}
	}

	return 1;
}

void *test_da_read(void *obj)
{
	rcu_register_thread();
	rcu_read_lock();

	unsigned seed = (unsigned)time(0);
	da_array_t *arr = (da_array_t *) obj;
	int index = rand_r(&seed) % da_get_count(arr);

	note("  dynamic-array: read thread");
	note("    read thread: saving pointer to %d. item", index);
	uint *item = &((uint *) da_get_items(arr))[index];
	note("    read thread: before: pointer: %p item: %u", item, *item);

	do_something(100000);

	note("    read thread after: pointer: %p item: %u", item, *item);
	rcu_read_unlock();
	note("    read thread unlocked: pointer: %p item: %u", item, *item);

	do_something(10000);

	note("    read thread: now the item should be deallocated");
	//note("    read thread: pointer: %p item: %u", item, *item);

	rcu_unregister_thread();

	return NULL;
}

static int test_da_resize_holding(da_array_t *arr)
{
	int ret = 1;
	rcu_register_thread();
	pthread_t reader;

	// Create thread for reading
	note("dynamic-array: creating read threads");
	if (pthread_create(&reader, NULL, test_da_read, (void *)arr)) {
		diag("dynamic-array: failed to create reading thread",
		     __func__);
		rcu_unregister_thread();
		return 0;
	}

	// Wait some time, so the other thread gets the item for reading
	do_something(5000);

	// Force resize
	note("  dynamic-array: array resized");
	if (da_reserve(arr, arr->allocated - arr->count + 1) == -1) {
		diag("dynamic-array: da_reserve(%p, %d) failed", arr,
		     arr->allocated - arr->count + 1);
		ret = 0;
	}

	//Wait for the thread to finish
	void *pret = NULL;
	if (pthread_join(reader, &pret)) {
		diag("dynamic-array: failed to join reading thread",
		     __func__);
		ret = 0;
	}

	rcu_unregister_thread();
	return ret;
}

static int test_da_resize(da_array_t *arr)
{
	unsigned seed = (unsigned)time(0);
	int orig_count = da_get_count(arr);
	note("dynamic-array: allocated: %d, items: %d", arr->allocated,
	     orig_count);
	// store the items currently in the array
	int *items = (int *)malloc(orig_count * sizeof(int));
	for (int i = 0; i < orig_count; ++i) {
		items[i] = ((int *)da_get_items(arr))[i];
	}

	// force resize
	int res = 0;
	while ((res = da_reserve(arr, 10)) == 0) {
		int i = da_get_count(arr);
		da_occupy(arr, 10);
		for (; i < da_get_count(arr); ++i) {
			((int *)da_get_items(arr))[i] = rand_r(&seed);
		}
	}

	if (res < 0) {
		diag("dynamic-array: failed to reserve space");
		return 0;
	}

	int errors = 0;
	for (int i = 0; i < orig_count; ++i) {
		if (items[i] != ((int *)da_get_items(arr))[i]) {
			diag("dynamic-array: Wrong item on position %d."
			     "Should be: %d, "
			     "present value: %d", i, items[i],
			     ((int *)da_get_items(arr))[i]);
			++errors;
		}
	}

	free(items);

	return errors == 0;
}

static int da_tests_run(int argc, char *argv[])
{
	// Init
	rcu_init();
	da_array_t array;

	// Test 1: test rcu
	ok(test_rcu_threads(), "dynamic-array: rcu tests");

	// Test 2: init
	ok(test_da_init(&array), "dynamic-array: init");

	// Test 3: reserve/occupy random operations
	ok(test_da_random_op(&array),
	   "dynamic-array: randomized reserve/occupy/release");

	// Test 4: resizing array while holding an item
	ok(test_da_resize_holding(&array),
	   "dynamic-array: resize array while holding an item");

	// Test 5: resize
	ok(test_da_resize(&array), "dynamic-array: resize array");

	// Cleanup
	da_destroy(&array);
	return 0;
}