File: hashmap.c

package info (click to toggle)
libgit2 1.9.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 60,804 kB
  • sloc: ansic: 203,436; javascript: 2,458; sh: 1,763; python: 384; perl: 99; php: 65; makefile: 33
file content (227 lines) | stat: -rw-r--r-- 5,542 bytes parent folder | download | duplicates (2)
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
#include "clar_libgit2.h"
#include "hashmap.h"
#include "hashmap_str.h"

GIT_HASHMAP_STR_SETUP(git_hashmap_test, char *);

static git_hashmap_test g_table;

void test_hashmap__initialize(void)
{
	memset(&g_table, 0x0, sizeof(git_hashmap_test));
}

void test_hashmap__cleanup(void)
{
	git_hashmap_test_dispose(&g_table);
}

void test_hashmap__0(void)
{
	cl_assert(git_hashmap_test_size(&g_table) == 0);
}

static void insert_strings(git_hashmap_test *table, size_t count)
{
	size_t i, j, over;
	char *str;

	for (i = 0; i < count; ++i) {
		str = git__malloc(10);
		for (j = 0; j < 10; ++j)
			str[j] = 'a' + (i % 26);
		str[9] = '\0';

		/* if > 26, then encode larger value in first letters */
		for (j = 0, over = i / 26; over > 0; j++, over = over / 26)
			str[j] = 'A' + (over % 26);

		cl_git_pass(git_hashmap_test_put(table, str, str));
	}

	cl_assert_equal_i(git_hashmap_test_size(table), count);
}

void test_hashmap__inserted_strings_can_be_retrieved(void)
{
	char *str;
	git_hashmap_iter_t iter = GIT_HASHMAP_ITER_INIT;
	size_t idx = 0;

	insert_strings(&g_table, 20);

	cl_assert(git_hashmap_test_contains(&g_table, "aaaaaaaaa"));
	cl_assert(git_hashmap_test_contains(&g_table, "ggggggggg"));
	cl_assert(!git_hashmap_test_contains(&g_table, "aaaaaaaab"));
	cl_assert(!git_hashmap_test_contains(&g_table, "abcdefghi"));

	while (git_hashmap_test_iterate(&iter, NULL, &str, &g_table) == 0) {
		idx++;
		git__free(str);
	}

	cl_assert_equal_sz(20, idx);
}

void test_hashmap__deleted_entry_cannot_be_retrieved(void)
{
	const char *key;
	char *str;
	git_hashmap_iter_t iter = GIT_HASHMAP_ITER_INIT;
	size_t idx = 0;

	insert_strings(&g_table, 20);

	cl_assert(git_hashmap_test_contains(&g_table, "bbbbbbbbb"));
	cl_git_pass(git_hashmap_test_get(&str, &g_table, "bbbbbbbbb"));
	cl_assert_equal_s(str, "bbbbbbbbb");
	cl_git_pass(git_hashmap_test_remove(&g_table, "bbbbbbbbb"));
	git__free(str);

	cl_assert(!git_hashmap_test_contains(&g_table, "bbbbbbbbb"));

	while (git_hashmap_test_iterate(&iter, &key, &str, &g_table) == 0) {
		idx++;
		git__free(str);
	}

	cl_assert_equal_sz(idx, 19);
}

void test_hashmap__inserting_many_keys_succeeds(void)
{
	char *str;
	git_hashmap_iter_t iter = GIT_HASHMAP_ITER_INIT;
	size_t idx = 0;

	insert_strings(&g_table, 10000);

	while (git_hashmap_test_iterate(&iter, NULL, &str, &g_table) == 0) {
		idx++;
		git__free(str);
	}

	cl_assert_equal_sz(idx, 10000);
}

void test_hashmap__get_succeeds_with_existing_entries(void)
{
	const char *keys[] = { "foo", "bar", "gobble" };
	char *values[] = { "oof", "rab", "elbbog" };
	char *str;
	uint32_t i;

	for (i = 0; i < ARRAY_SIZE(keys); i++)
		cl_git_pass(git_hashmap_test_put(&g_table, keys[i], values[i]));

	cl_git_pass(git_hashmap_test_get(&str, &g_table, "foo"));
	cl_assert_equal_s(str, "oof");

	cl_git_pass(git_hashmap_test_get(&str, &g_table, "bar"));
	cl_assert_equal_s(str, "rab");

	cl_git_pass(git_hashmap_test_get(&str, &g_table, "gobble"));
	cl_assert_equal_s(str, "elbbog");
}

void test_hashmap__get_returns_notfound_on_nonexisting_key(void)
{
	const char *keys[] = { "foo", "bar", "gobble" };
	char *values[] = { "oof", "rab", "elbbog" };
	char *str;
	uint32_t i;

	for (i = 0; i < ARRAY_SIZE(keys); i++)
		cl_git_pass(git_hashmap_test_put(&g_table, keys[i], values[i]));

	cl_git_fail_with(GIT_ENOTFOUND, git_hashmap_test_get(&str, &g_table, "other"));
}

void test_hashmap__put_persists_key(void)
{
	char *str;

	cl_git_pass(git_hashmap_test_put(&g_table, "foo", "oof"));

	cl_git_pass(git_hashmap_test_get(&str, &g_table, "foo"));
	cl_assert_equal_s(str, "oof");
}

void test_hashmap__put_persists_multpile_keys(void)
{
	char *str;

	cl_git_pass(git_hashmap_test_put(&g_table, "foo", "oof"));
	cl_git_pass(git_hashmap_test_put(&g_table, "bar", "rab"));

	cl_git_pass(git_hashmap_test_get(&str, &g_table, "foo"));
	cl_assert_equal_s(str, "oof");

	cl_git_pass(git_hashmap_test_get(&str, &g_table, "bar"));
	cl_assert_equal_s(str, "rab");
}

void test_hashmap__put_updates_existing_key(void)
{
	char *str;

	cl_git_pass(git_hashmap_test_put(&g_table, "foo", "oof"));
	cl_git_pass(git_hashmap_test_put(&g_table, "bar", "rab"));
	cl_git_pass(git_hashmap_test_put(&g_table, "gobble", "elbbog"));
	cl_assert_equal_i(3, git_hashmap_test_size(&g_table));

	cl_git_pass(git_hashmap_test_put(&g_table, "foo", "other"));
	cl_assert_equal_i(git_hashmap_test_size(&g_table), 3);

	cl_git_pass(git_hashmap_test_get(&str, &g_table, "foo"));
	cl_assert_equal_s(str, "other");
}

void test_hashmap__iteration(void)
{
	struct {
		char *key;
		char *value;
		int seen;
	} entries[] = {
		{ "foo", "oof" },
		{ "bar", "rab" },
		{ "gobble", "elbbog" },
	};
	const char *key;
	char *value;
	uint32_t i, n;
	git_hashmap_iter_t iter = GIT_HASHMAP_ITER_INIT;

	for (i = 0; i < ARRAY_SIZE(entries); i++)
		cl_git_pass(git_hashmap_test_put(&g_table, entries[i].key, entries[i].value));

	i = 0, n = 0;
	while (git_hashmap_test_iterate(&iter, &key, &value, &g_table) == 0) {
		size_t j;

		for (j = 0; j < ARRAY_SIZE(entries); j++) {
			if (strcmp(entries[j].key, key))
				continue;

			cl_assert_equal_i(entries[j].seen, 0);
			cl_assert_equal_s(entries[j].value, value);
			entries[j].seen++;
			break;
		}

		n++;
	}

	for (i = 0; i < ARRAY_SIZE(entries); i++)
		cl_assert_equal_i(entries[i].seen, 1);

	cl_assert_equal_i(n, ARRAY_SIZE(entries));
}

void test_hashmap__iterating_empty_map_stops_immediately(void)
{
	git_hashmap_iter_t iter = GIT_HASHMAP_ITER_INIT;

	cl_git_fail_with(GIT_ITEROVER, git_hashmap_test_iterate(&iter, NULL, NULL, &g_table));
}