Fri, 12 Jul 2013 20:50:18 +0200
new properties parser
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
1 | /* |
103
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
3 | * |
103
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
4 | * Copyright 2013 Olaf Wintermann. All rights reserved. |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
5 | * |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
6 | * Redistribution and use in source and binary forms, with or without |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
7 | * modification, are permitted provided that the following conditions are met: |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
8 | * |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
9 | * 1. Redistributions of source code must retain the above copyright |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
10 | * notice, this list of conditions and the following disclaimer. |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
11 | * |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
12 | * 2. Redistributions in binary form must reproduce the above copyright |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
13 | * notice, this list of conditions and the following disclaimer in the |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
14 | * documentation and/or other materials provided with the distribution. |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
15 | * |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
08018864fb91
added license and copyright notice to all files
Mike Becker <universe@uap-core.de>
parents:
95
diff
changeset
|
26 | * POSSIBILITY OF SUCH DAMAGE. |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
27 | */ |
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
28 | |
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
29 | #include "map_tests.h" |
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
30 | |
33
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
31 | UCX_TEST_IMPLEMENT(test_ucx_map_new) { |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
32 | UcxMap *map = ucx_map_new(16); |
33
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
33 | UCX_TEST_BEGIN |
40
583718dd4cf3
added semicolons to assert makros
Mike Becker <universe@uap-core.de>
parents:
34
diff
changeset
|
34 | UCX_TEST_ASSERT(map->size == 16, "wrong size"); |
583718dd4cf3
added semicolons to assert makros
Mike Becker <universe@uap-core.de>
parents:
34
diff
changeset
|
35 | UCX_TEST_ASSERT(map->map != NULL, "failed"); |
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
36 | |
33
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
37 | UCX_TEST_END |
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
38 | ucx_map_free(map); |
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
39 | } |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
40 | |
33
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
41 | UCX_TEST_IMPLEMENT(test_ucx_key) { |
71
303dabadff1c
made the code work with g++ without errors (but warnings)
Mike Becker <universe@uap-core.de>
parents:
69
diff
changeset
|
42 | UcxKey key = ucx_key((void*)"This is a text.", 15); |
33
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
43 | UCX_TEST_BEGIN |
69
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
44 | UCX_TEST_ASSERT(strncmp((const char*)key.data, "This is a text.", 15) == 0, |
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
45 | "failed"); |
40
583718dd4cf3
added semicolons to assert makros
Mike Becker <universe@uap-core.de>
parents:
34
diff
changeset
|
46 | UCX_TEST_ASSERT(key.len == 15, "failed"); |
583718dd4cf3
added semicolons to assert makros
Mike Becker <universe@uap-core.de>
parents:
34
diff
changeset
|
47 | UCX_TEST_ASSERT(key.hash == 1261186027, "hash failed"); |
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
48 | |
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
49 | UCX_TEST_END |
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
50 | } |
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
51 | |
33
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
52 | UCX_TEST_IMPLEMENT(test_ucx_map_put) { |
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
53 | |
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
54 | UcxMap *map = ucx_map_new(4); |
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
55 | |
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
56 | int td[5]; |
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
57 | td[0] = 10; td[1] = 42; td[2] = 70; td[3] = 11200; td[4] = 80000; |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
58 | |
33
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
59 | UCX_TEST_BEGIN |
80
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
60 | ucx_map_cstr_put(map, "Key2", &td[2]); /* 3.2 */ |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
61 | ucx_map_cstr_put(map, "Key0", &td[0]); /* 0.0 */ |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
62 | ucx_map_cstr_put(map, "Key1", &td[1]); /* 3.0 */ |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
63 | ucx_map_cstr_put(map, "KeY3", &td[3]); /* 3.1 */ |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
64 | ucx_map_cstr_put(map, "KEY4", &td[4]); /* 1.0 */ |
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
65 | |
40
583718dd4cf3
added semicolons to assert makros
Mike Becker <universe@uap-core.de>
parents:
34
diff
changeset
|
66 | UCX_TEST_ASSERT(*((int*)map->map[0]->data) == td[0], "failed Key0"); |
80
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
67 | UCX_TEST_ASSERT(*((int*)map->map[1]->data) == td[4], "failed KEY4"); |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
68 | UCX_TEST_ASSERT(*((int*)map->map[3]->data) == td[1], "failed Key1"); |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
69 | |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
70 | UCX_TEST_ASSERT(map->map[3]->next != NULL, "no list at slot 3"); |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
71 | UCX_TEST_ASSERT(map->map[3]->next->next != NULL, "list corrupt at slot 3"); |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
72 | UCX_TEST_ASSERT(*((int*)map->map[3]->next->data) == td[3], |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
73 | "failed KeY3") |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
74 | UCX_TEST_ASSERT(*((int*)map->map[3]->next->next->data) == td[2], |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
75 | "failed KeY2"); |
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
76 | |
80
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
77 | UCX_TEST_ASSERT(map->map[0]->next == NULL, "slot 0 not terminated"); |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
78 | UCX_TEST_ASSERT(map->map[1]->next == NULL, "slot 1 not terminated"); |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
79 | UCX_TEST_ASSERT(map->map[2] == NULL, "slot 2 not empty"); |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
80 | UCX_TEST_ASSERT(map->map[3]->next->next->next == NULL, |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
81 | "slot 3 not terminated") |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
82 | |
80
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
83 | ucx_map_cstr_put(map, "KeY3", &td[4]); /* replace 3.1 */ |
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
84 | |
80
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
85 | UCX_TEST_ASSERT(*((int*)map->map[3]->data) == td[1], |
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
86 | "overwrite failed") |
80
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
87 | UCX_TEST_ASSERT(*((int*)map->map[3]->next->data) == td[4], |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
88 | "overwrite failed"); |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
89 | UCX_TEST_ASSERT(*((int*)map->map[3]->next->next->data) == td[2], |
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
90 | "overwrite failed") |
80
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
91 | UCX_TEST_ASSERT(map->map[3]->next->next->next == NULL, "overwrite failed"); |
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
92 | |
33
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
93 | UCX_TEST_END |
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
94 | ucx_map_free(map); |
33
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
95 | } |
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
96 | |
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
97 | UCX_TEST_IMPLEMENT(test_ucx_map_get) { |
34 | 98 | UcxMap *map = ucx_map_new(4); |
99 | ||
100 | int td[5]; | |
101 | td[0] = 10; td[1] = 42; td[2] = 70; td[3] = 11200; td[4] = 80000; | |
102 | ||
80
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
103 | ucx_map_cstr_put(map, "Key2", &td[2]); |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
104 | ucx_map_cstr_put(map, "Key0", &td[0]); |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
105 | ucx_map_cstr_put(map, "Key1", &td[1]); |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
106 | ucx_map_cstr_put(map, "KeY3", &td[3]); |
0125e4089f88
Fixed map tests + added some formatting options to logger
Mike Becker <universe@uap-core.de>
parents:
76
diff
changeset
|
107 | ucx_map_cstr_put(map, "KEY4", &td[4]); |
33
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
108 | UCX_TEST_BEGIN |
34 | 109 | |
110 | td[0] = *((int*)ucx_map_cstr_get(map, "Key0")); | |
111 | td[1] = *((int*)ucx_map_cstr_get(map, "Key1")); | |
112 | td[2] = *((int*)ucx_map_cstr_get(map, "Key2")); | |
113 | td[3] = *((int*)ucx_map_cstr_get(map, "KeY3")); | |
114 | td[4] = *((int*)ucx_map_cstr_get(map, "KEY4")); | |
40
583718dd4cf3
added semicolons to assert makros
Mike Becker <universe@uap-core.de>
parents:
34
diff
changeset
|
115 | UCX_TEST_ASSERT(td[0] == 10, "failed key 0"); |
583718dd4cf3
added semicolons to assert makros
Mike Becker <universe@uap-core.de>
parents:
34
diff
changeset
|
116 | UCX_TEST_ASSERT(td[1] == 42, "failed key 1"); |
583718dd4cf3
added semicolons to assert makros
Mike Becker <universe@uap-core.de>
parents:
34
diff
changeset
|
117 | UCX_TEST_ASSERT(td[2] == 70, "failed key 2"); |
583718dd4cf3
added semicolons to assert makros
Mike Becker <universe@uap-core.de>
parents:
34
diff
changeset
|
118 | UCX_TEST_ASSERT(td[3] == 11200, "failed key 3"); |
583718dd4cf3
added semicolons to assert makros
Mike Becker <universe@uap-core.de>
parents:
34
diff
changeset
|
119 | UCX_TEST_ASSERT(td[4] == 80000, "failed key 4"); |
34 | 120 | |
53 | 121 | UCX_TEST_ASSERT(map->count == 5, "expected 5 remaining values"); |
122 | UCX_TEST_ASSERT(ucx_map_cstr_get(map, "Key0") != NULL, "element removed"); | |
123 | ||
124 | UCX_TEST_END | |
125 | ucx_map_free(map); | |
126 | } | |
127 | ||
128 | UCX_TEST_IMPLEMENT(test_ucx_map_remove) { | |
129 | UcxMap *map = ucx_map_new(4); | |
130 | ||
131 | int td[5]; | |
132 | td[0] = 10; td[1] = 42; td[2] = 70; td[3] = 11200; td[4] = 80000; | |
133 | ||
134 | ucx_map_cstr_put(map, "Key2", &td[2]); /* 0 */ | |
135 | ucx_map_cstr_put(map, "Key0", &td[0]); /* 0 */ | |
136 | ucx_map_cstr_put(map, "Key1", &td[1]); /* 3 */ | |
137 | ucx_map_cstr_put(map, "KeY3", &td[3]); /* 2 */ | |
138 | ucx_map_cstr_put(map, "KEY4", &td[4]); /* 0 */ | |
139 | UCX_TEST_BEGIN | |
140 | ||
141 | td[0] = *((int*)ucx_map_cstr_remove(map, "Key0")); | |
142 | td[1] = *((int*)ucx_map_cstr_get(map, "Key1")); | |
143 | td[2] = *((int*)ucx_map_cstr_remove(map, "Key2")); | |
144 | td[3] = *((int*)ucx_map_cstr_get(map, "KeY3")); | |
145 | td[4] = *((int*)ucx_map_cstr_get(map, "KEY4")); | |
146 | UCX_TEST_ASSERT(td[0] == 10, "failed key 0"); | |
147 | UCX_TEST_ASSERT(td[1] == 42, "failed key 1"); | |
148 | UCX_TEST_ASSERT(td[2] == 70, "failed key 2"); | |
149 | UCX_TEST_ASSERT(td[3] == 11200, "failed key 3"); | |
150 | UCX_TEST_ASSERT(td[4] == 80000, "failed key 4"); | |
151 | ||
152 | UCX_TEST_ASSERT(map->count == 3, "expected 3 remaining values"); | |
153 | UCX_TEST_ASSERT(ucx_map_cstr_get(map, "Key0")==NULL, "element not removed"); | |
154 | UCX_TEST_ASSERT(ucx_map_cstr_get(map, "Key1")!=NULL, "element removed"); | |
155 | UCX_TEST_ASSERT(ucx_map_cstr_get(map, "Key2")==NULL, "element not removed"); | |
156 | UCX_TEST_ASSERT(ucx_map_cstr_get(map, "KeY3")!=NULL, "element removed"); | |
157 | UCX_TEST_ASSERT(ucx_map_cstr_get(map, "KEY4")!=NULL, "element removed"); | |
158 | ||
159 | UCX_TEST_ASSERT(ucx_map_cstr_remove(map, "Key2") == NULL, | |
160 | "subsequent remove call shall return NULL"); | |
161 | ||
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
162 | UCX_TEST_END |
34 | 163 | ucx_map_free(map); |
20
db7d9860dbbd
added some map functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
164 | } |
29
bce0d7f2912b
fixed map with the help of new tests
Mike Becker <universe@uap-core.de>
parents:
20
diff
changeset
|
165 | |
88
18823857ce79
variadic test subroutines
Mike Becker <universe@uap-core.de>
parents:
80
diff
changeset
|
166 | UCX_TEST_SUBROUTINE(test_ucx_map_itersrt, UcxMap *map) { |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
167 | int v1 = 10; |
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
168 | int v2 = 15; |
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
169 | int v3 = 7; |
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
170 | int v4 = 9; |
32
c7af4ec56e19
consequently used intptr_t in mpool tests
Mike Becker <universe@uap-core.de>
parents:
31
diff
changeset
|
171 | |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
172 | ucx_map_cstr_put(map, "v1", &v1); |
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
173 | ucx_map_cstr_put(map, "v2", &v2); |
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
174 | ucx_map_cstr_put(map, "v3", &v3); |
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
175 | ucx_map_cstr_put(map, "v4", &v4); |
32
c7af4ec56e19
consequently used intptr_t in mpool tests
Mike Becker <universe@uap-core.de>
parents:
31
diff
changeset
|
176 | |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
177 | UcxMapIterator i = ucx_map_iterator(map); |
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
178 | int check = 0; |
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
179 | int hit = 0; |
32
c7af4ec56e19
consequently used intptr_t in mpool tests
Mike Becker <universe@uap-core.de>
parents:
31
diff
changeset
|
180 | |
41
7f90a03e186e
simplified UCX_MAP_FOREACH
Mike Becker <universe@uap-core.de>
parents:
40
diff
changeset
|
181 | int* v; |
7f90a03e186e
simplified UCX_MAP_FOREACH
Mike Becker <universe@uap-core.de>
parents:
40
diff
changeset
|
182 | UCX_MAP_FOREACH(v, i) { |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
183 | check += *v; |
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
184 | hit++; |
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
185 | } |
32
c7af4ec56e19
consequently used intptr_t in mpool tests
Mike Becker <universe@uap-core.de>
parents:
31
diff
changeset
|
186 | |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
187 | UCX_TEST_ASSERT(hit == 4, "test1: wrong number of hits"); |
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
188 | UCX_TEST_ASSERT(check == v1+v2+v3+v4, "test1: wrong result"); |
33
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
189 | } |
32
c7af4ec56e19
consequently used intptr_t in mpool tests
Mike Becker <universe@uap-core.de>
parents:
31
diff
changeset
|
190 | |
33
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
191 | UCX_TEST_IMPLEMENT(test_ucx_map_iterator) { |
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
192 | UcxMap *map = ucx_map_new(16); |
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
193 | UCX_TEST_BEGIN |
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
194 | UCX_TEST_CALL_SUBROUTINE(test_ucx_map_itersrt, map) |
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
195 | UCX_TEST_END |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
196 | ucx_map_free(map); |
33
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
197 | } |
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
198 | |
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
199 | UCX_TEST_IMPLEMENT(test_ucx_map_iterator_chain) { |
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
200 | UcxMap *map = ucx_map_new(1); |
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
201 | UCX_TEST_BEGIN |
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
202 | UCX_TEST_CALL_SUBROUTINE(test_ucx_map_itersrt, map) |
9c219a62070d
major refactoring of test framework
Mike Becker <universe@uap-core.de>
parents:
32
diff
changeset
|
203 | UCX_TEST_END |
31
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
204 | ucx_map_free(map); |
91ac86557290
added map iterator
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
205 | } |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
206 | |
48
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
207 | void* test_ucx_map_store_load_encdec(void *value, void *data, size_t *size) { |
69
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
208 | const char *string = (const char*) value; |
46
48ca036d7d9c
implemented encoder/decoder for map store/load
Mike Becker <universe@uap-core.de>
parents:
44
diff
changeset
|
209 | size_t n = strlen(string); |
69
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
210 | char *encoded = (char*) malloc(n+1); |
95 | 211 | for (size_t i = 0 ; i < n ; i++) { |
46
48ca036d7d9c
implemented encoder/decoder for map store/load
Mike Becker <universe@uap-core.de>
parents:
44
diff
changeset
|
212 | encoded[i] = string[n-1-i]; |
48ca036d7d9c
implemented encoder/decoder for map store/load
Mike Becker <universe@uap-core.de>
parents:
44
diff
changeset
|
213 | } |
48ca036d7d9c
implemented encoder/decoder for map store/load
Mike Becker <universe@uap-core.de>
parents:
44
diff
changeset
|
214 | encoded[n] = 0; |
48
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
215 | *size = n+1; |
46
48ca036d7d9c
implemented encoder/decoder for map store/load
Mike Becker <universe@uap-core.de>
parents:
44
diff
changeset
|
216 | return encoded; |
48ca036d7d9c
implemented encoder/decoder for map store/load
Mike Becker <universe@uap-core.de>
parents:
44
diff
changeset
|
217 | } |
48ca036d7d9c
implemented encoder/decoder for map store/load
Mike Becker <universe@uap-core.de>
parents:
44
diff
changeset
|
218 | |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
219 | UCX_TEST_IMPLEMENT(test_ucx_map_store_load) { |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
220 | UcxMap *map = ucx_map_new(4); |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
221 | |
71
303dabadff1c
made the code work with g++ without errors (but warnings)
Mike Becker <universe@uap-core.de>
parents:
69
diff
changeset
|
222 | ucx_map_cstr_put(map, "test", (void*)"test"); |
303dabadff1c
made the code work with g++ without errors (but warnings)
Mike Becker <universe@uap-core.de>
parents:
69
diff
changeset
|
223 | ucx_map_cstr_put(map, "key", (void*)"value"); |
303dabadff1c
made the code work with g++ without errors (but warnings)
Mike Becker <universe@uap-core.de>
parents:
69
diff
changeset
|
224 | ucx_map_cstr_put(map, "other.very.long.key", (void*)"value"); |
303dabadff1c
made the code work with g++ without errors (but warnings)
Mike Becker <universe@uap-core.de>
parents:
69
diff
changeset
|
225 | ucx_map_cstr_put(map, "testkey", (void*)"testvalue"); |
303dabadff1c
made the code work with g++ without errors (but warnings)
Mike Becker <universe@uap-core.de>
parents:
69
diff
changeset
|
226 | ucx_map_cstr_put(map, "simple", (void*)"not a key but an extremely long " |
303dabadff1c
made the code work with g++ without errors (but warnings)
Mike Becker <universe@uap-core.de>
parents:
69
diff
changeset
|
227 | "value to test if the buffer extension works as designed"); |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
228 | |
55
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
229 | UCX_TEST_BEGIN |
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
230 | FILE *f = tmpfile(); |
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
231 | UCX_TEST_ASSERT(f, "test file cannot be opened, test aborted") |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
232 | int r; |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
233 | |
43
02f38adea013
fixed crash fails by completing the implementation of the tested function....
Mike Becker <universe@uap-core.de>
parents:
42
diff
changeset
|
234 | fwrite(" # comment test\n", 1, 16, f); |
46
48ca036d7d9c
implemented encoder/decoder for map store/load
Mike Becker <universe@uap-core.de>
parents:
44
diff
changeset
|
235 | r = ucx_map_store_enc(map, f, test_ucx_map_store_load_encdec, NULL); |
43
02f38adea013
fixed crash fails by completing the implementation of the tested function....
Mike Becker <universe@uap-core.de>
parents:
42
diff
changeset
|
236 | fwrite("!discard this", 1, 13, f); |
55
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
237 | fflush(f); |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
238 | |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
239 | ucx_map_free(map); |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
240 | map = ucx_map_new(1); |
55
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
241 | fseek(f, 0, SEEK_SET); |
48
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
242 | UcxAllocator allocator = UCX_ALLOCATOR_DEFAULT; |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
243 | r += ucx_map_load_enc(map, f, allocator, |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
244 | test_ucx_map_store_load_encdec, NULL); |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
245 | fclose(f); |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
246 | |
69
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
247 | const char *value; |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
248 | UCX_TEST_ASSERT(r == 0, "IO errors, test cannot be performed"); |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
249 | |
69
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
250 | value = (const char *) ucx_map_cstr_get(map, "test"); |
43
02f38adea013
fixed crash fails by completing the implementation of the tested function....
Mike Becker <universe@uap-core.de>
parents:
42
diff
changeset
|
251 | UCX_TEST_ASSERT(value != NULL, "value not found for key: test"); |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
252 | UCX_TEST_ASSERT(strcmp(value, "test") == 0, "value error for key: test"); |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
253 | |
69
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
254 | value = (const char *) ucx_map_cstr_get(map, "key"); |
43
02f38adea013
fixed crash fails by completing the implementation of the tested function....
Mike Becker <universe@uap-core.de>
parents:
42
diff
changeset
|
255 | UCX_TEST_ASSERT(value != NULL, "value not found for key: key"); |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
256 | UCX_TEST_ASSERT(strcmp(value, "value") == 0, "value error for key: key"); |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
257 | |
69
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
258 | value = (const char *) ucx_map_cstr_get(map, "other.very.long.key"); |
43
02f38adea013
fixed crash fails by completing the implementation of the tested function....
Mike Becker <universe@uap-core.de>
parents:
42
diff
changeset
|
259 | UCX_TEST_ASSERT(value != NULL, |
02f38adea013
fixed crash fails by completing the implementation of the tested function....
Mike Becker <universe@uap-core.de>
parents:
42
diff
changeset
|
260 | "value not found for key: other.very.long.key"); |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
261 | UCX_TEST_ASSERT(strcmp(value, "value") == 0, |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
262 | "value error for key: other.very.long.key"); |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
263 | |
69
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
264 | value = (const char *) ucx_map_cstr_get(map, "testkey"); |
43
02f38adea013
fixed crash fails by completing the implementation of the tested function....
Mike Becker <universe@uap-core.de>
parents:
42
diff
changeset
|
265 | UCX_TEST_ASSERT(value != NULL, "value not found for key: testkey"); |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
266 | UCX_TEST_ASSERT(strcmp(value, "testvalue") == 0, |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
267 | "value error for key: testkey"); |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
268 | |
69
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
269 | value = (const char *) ucx_map_cstr_get(map, "simple"); |
43
02f38adea013
fixed crash fails by completing the implementation of the tested function....
Mike Becker <universe@uap-core.de>
parents:
42
diff
changeset
|
270 | UCX_TEST_ASSERT(value != NULL, "value not found for key: simple"); |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
271 | UCX_TEST_ASSERT(strcmp(value, "not a key but an extremely long value " |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
272 | "to test if the buffer extension works as designed") == 0, |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
273 | "value error for key: simple"); |
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
274 | |
55
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
275 | void *d; |
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
276 | UcxMapIterator iter = ucx_map_iterator(map); |
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
277 | UCX_MAP_FOREACH(d, iter) { |
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
278 | free(d); |
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
279 | } |
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
280 | ucx_map_free(map); |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
281 | UCX_TEST_END |
48
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
282 | } |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
283 | |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
284 | UCX_TEST_IMPLEMENT(test_ucx_map_store_load_with_mempool) { |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
285 | UcxMap *map = ucx_map_new(4); |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
286 | |
71
303dabadff1c
made the code work with g++ without errors (but warnings)
Mike Becker <universe@uap-core.de>
parents:
69
diff
changeset
|
287 | ucx_map_cstr_put(map, "test", (void*)"test"); |
303dabadff1c
made the code work with g++ without errors (but warnings)
Mike Becker <universe@uap-core.de>
parents:
69
diff
changeset
|
288 | ucx_map_cstr_put(map, "key", (void*)"value"); |
303dabadff1c
made the code work with g++ without errors (but warnings)
Mike Becker <universe@uap-core.de>
parents:
69
diff
changeset
|
289 | ucx_map_cstr_put(map, "testkey", (void*)"testvalue"); |
303dabadff1c
made the code work with g++ without errors (but warnings)
Mike Becker <universe@uap-core.de>
parents:
69
diff
changeset
|
290 | ucx_map_cstr_put(map, "simple", (void*)"a simple value"); |
48
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
291 | |
55
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
292 | UCX_TEST_BEGIN |
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
293 | FILE *f = tmpfile(); |
76 | 294 | UCX_TEST_ASSERT(f, "test file cannot be opened, test aborted"); |
48
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
295 | int r; |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
296 | r = ucx_map_store_enc(map, f, NULL, NULL); |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
297 | ucx_map_free(map); |
55
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
298 | fflush(f); |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
299 | |
48
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
300 | UcxMempool *pool = ucx_mempool_new(4); |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
301 | map = ucx_map_new(4); |
55
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
302 | fseek(f, 0, SEEK_SET); |
48
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
303 | UcxAllocator allocator = UCX_ALLOCATOR_MEMPOOL(pool); |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
304 | r += ucx_map_load_enc(map, f, allocator, |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
305 | test_ucx_map_store_load_encdec, NULL); |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
306 | fclose(f); |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
307 | |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
308 | UCX_TEST_ASSERT(r == 0, "IO errors, test cannot be performed"); |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
309 | UcxMapIterator iter = ucx_map_iterator(map); |
69
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
310 | const char *value; size_t n; |
48
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
311 | UCX_MAP_FOREACH(value, iter) { |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
312 | n = strlen(value); |
69
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
313 | UCX_TEST_ASSERT(strncmp((const char*) pool->data[iter.index], value, n), |
48
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
314 | "values of map does not match pooled values"); |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
315 | } |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
316 | |
621a4430c404
map can now load values from file into pooled memory
Mike Becker <universe@uap-core.de>
parents:
46
diff
changeset
|
317 | ucx_mempool_free(pool); |
55
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
318 | ucx_map_free(map); |
180bc6b18fec
fixed map tests + used tmpfiles in tests
Mike Becker <universe@uap-core.de>
parents:
53
diff
changeset
|
319 | UCX_TEST_END |
42
ff3dd1ee7dee
(broken-commit) - added load and store functions, tests failing
Mike Becker <universe@uap-core.de>
parents:
41
diff
changeset
|
320 | } |
44 | 321 | |
322 | UCX_TEST_IMPLEMENT(test_ucx_map_clone) { | |
323 | UcxMap *map = ucx_map_new(4); | |
324 | ||
71
303dabadff1c
made the code work with g++ without errors (but warnings)
Mike Becker <universe@uap-core.de>
parents:
69
diff
changeset
|
325 | ucx_map_cstr_put(map, "key1", (void*)"value1"); |
303dabadff1c
made the code work with g++ without errors (but warnings)
Mike Becker <universe@uap-core.de>
parents:
69
diff
changeset
|
326 | ucx_map_cstr_put(map, "key2", (void*)"value2"); |
303dabadff1c
made the code work with g++ without errors (but warnings)
Mike Becker <universe@uap-core.de>
parents:
69
diff
changeset
|
327 | ucx_map_cstr_put(map, "key3", (void*)"value3"); |
44 | 328 | |
329 | UcxMap *clone = ucx_map_clone(map, NULL, NULL); | |
330 | ||
69
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
331 | const char *v1 = (const char *) ucx_map_cstr_get(map, "key1"); |
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
332 | const char *v2 = (const char *) ucx_map_cstr_get(map, "key2"); |
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
333 | const char *v3 = (const char *) ucx_map_cstr_get(map, "key3"); |
44 | 334 | |
335 | UCX_TEST_BEGIN | |
336 | ||
337 | UCX_TEST_ASSERT(v1 != NULL, "failed key 1"); | |
338 | UCX_TEST_ASSERT(v2 != NULL, "failed key 2"); | |
339 | UCX_TEST_ASSERT(v3 != NULL, "failed key 3"); | |
340 | ||
69
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
341 | const char *c1 = (const char *) ucx_map_cstr_get(clone, "key1"); |
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
342 | const char *c2 = (const char *) ucx_map_cstr_get(clone, "key2"); |
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
343 | const char *c3 = (const char *) ucx_map_cstr_get(clone, "key3"); |
44 | 344 | |
345 | UCX_TEST_ASSERT(c1 != NULL, "failed key 1 (clone)"); | |
346 | UCX_TEST_ASSERT(c2 != NULL, "failed key 2 (clone)"); | |
347 | UCX_TEST_ASSERT(c3 != NULL, "failed key 3 (clone)"); | |
348 | ||
349 | UCX_TEST_ASSERT(strcmp(c1, v1) == 0, "value error for key1"); | |
350 | UCX_TEST_ASSERT(strcmp(c2, v2) == 0, "value error for key2"); | |
351 | UCX_TEST_ASSERT(strcmp(c3, v3) == 0, "value error for key3"); | |
352 | ||
353 | UCX_TEST_END | |
354 | ||
355 | ucx_map_free(map); | |
356 | ucx_map_free(clone); | |
357 | } | |
51
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
358 | |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
359 | UCX_TEST_IMPLEMENT(test_ucx_map_rehash) { |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
360 | UcxMap *map = ucx_map_new(4); |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
361 | |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
362 | char keys[10][5]; |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
363 | char values[10][7]; |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
364 | for (int i = 0 ; i < 10 ; i++) { |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
365 | strcpy(keys[i], "key"); |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
366 | keys[i][3] = 48+i; keys[i][4] = 0; |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
367 | strcpy(values[i], "value"); |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
368 | values[i][5] = 48+i; values[i][6] = 0; |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
369 | |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
370 | ucx_map_cstr_put(map, keys[i], values[i]); |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
371 | } |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
372 | |
52
34f50d0bada4
added ucx_map_copy and fixed ucx_map_rehash
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
373 | ucx_map_rehash(map); |
51
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
374 | |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
375 | UCX_TEST_BEGIN |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
376 | UCX_TEST_ASSERT(map->size == 25, "new capacity shall be 2.5 * count"); |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
377 | UCX_TEST_ASSERT(map->count == 10, "new map element count incorrect"); |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
378 | for (int i = 0 ; i < 10 ; i++) { |
69
fb59270b1de3
made the code work with VC++ compiler (use make CONF=windows)
Mike Becker <universe@uap-core.de>
parents:
55
diff
changeset
|
379 | const char *value = (const char *) ucx_map_cstr_get(map, keys[i]); |
51
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
380 | UCX_TEST_ASSERT(value != NULL, "new map is missing old keys"); |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
381 | UCX_TEST_ASSERT(strncmp(value, values[i], 6) == 0, |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
382 | "new map contains incorrect values"); |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
383 | } |
52
34f50d0bada4
added ucx_map_copy and fixed ucx_map_rehash
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
384 | ucx_map_rehash(map); |
34f50d0bada4
added ucx_map_copy and fixed ucx_map_rehash
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
385 | UCX_TEST_ASSERT(map->size == 25, |
51
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
386 | "subsequent rehashing call shall not change size"); |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
387 | UCX_TEST_END |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
388 | |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
389 | ucx_map_free(map); |
1c78cd19fb6b
added rehashing to maps by using clone function
Mike Becker <universe@uap-core.de>
parents:
48
diff
changeset
|
390 | } |