summaryrefslogtreecommitdiff
path: root/tests/map.c
blob: 08f831e59ce983253e32368bbe316e9348a7f14a (plain) (blame)
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
#include <assert.h>
#include <stdio.h>

#define MAP_KEY int
#define MAP_TYPE int
#define MAP_HASH(a) CONTS_MAP_NO_HASH(a)
#define MAP_CMP(a, b) ((a) - (b))
#define MAP_NAME ints
#include <conts/map.h>

int main()
{
	/* heuristic, but if we know how many elements we'll need, we should
	 * give it to the create function. */
	struct ints ints = ints_create(0);
	for (int i = 0; i < 1000000; ++i) {
		ints_insert(&ints, i, i);
	}
	assert(ints_len(&ints) == 1000000);

	for (int i = 0; i < 1000000; ++i) {
		int *v = ints_find(&ints, i);
		assert(v && *v == i);
	}

	foreach(ints, iter, &ints) {
		assert(iter->key == iter->data);
	}

	for (int i = 0; i < 1000000; ++i) {
		ints_remove(&ints, i);
	}

	assert(ints_len(&ints) == 0);
	ints_destroy(&ints);
}