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
|
/*
* Copyright (C) 2022-2023 Alessandro Iezzi <aiezzi AT alessandroiezzi PERIOD it>
*
* This file is part of libutils.
*
* libutils is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* libutils 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with libutils. If not, see <https://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <list.h>
#include <map.h>
#define assert(c) if (c == 0) { printf("%d", __LINE__); exit(1);}
#define log(str) printf("%s: %s\n", __func__, str);
void
test_list1()
{
/* Test adding elements in a list */
log("Running...");
const char *data = "hello";
list_t list = clist_create();
clist_add(&list, (void *) data);
assert(list.first == list.last);
assert(strcmp(list.first->data, data) == 0);
assert(list.size == 1);
log("OK\n");
}
void
test_list2()
{
/* Test iterator */
log("Running...");
char *data1 = strdup("hello");
list_t list = clist_create();
clist_add(&list, data1);
iterator_t it = clist_iterator(&list);
assert(clist_iterator_has_next(it));
void *data2 = clist_iterator_next(&it);
assert(data2 != NULL);
assert(strcmp(data1, data2) == 0);
assert(clist_iterator_has_next(it) == 0);
log("OK\n");
}
void
test_list3()
{
/* Test adding a collection to another one */
log("Running...");
list_t l1 = clist_create();
list_t l2 = clist_create();
clist_add(&l1, "test1");
clist_add(&l2, "test2");
clist_add_all(&l1, &l2);
iterator_t i = clist_iterator(&l1);
if (clist_iterator_has_next(i))
assert(strcmp(clist_iterator_next(&i), "test1") == 0);
if (clist_iterator_has_next(i))
assert(strcmp(clist_iterator_next(&i), "test2") == 0);
assert(l1.size == 2);
log("OK\n");
}
void
test_list4()
{
/* Test adding a collection to another one and add a new element */
log("Running...");
list_t l1 = clist_create();
list_t l2 = clist_create();
clist_add(&l1, "test1");
clist_add(&l2, "test2");
clist_add_all(&l1, &l2);
/* add a new element */
clist_add(&l1, "test3");
iterator_t i = clist_iterator(&l1);
if (clist_iterator_has_next(i))
assert(strcmp(clist_iterator_next(&i), "test1") == 0);
if (clist_iterator_has_next(i))
assert(strcmp(clist_iterator_next(&i), "test2") == 0);
if (clist_iterator_has_next(i))
assert(strcmp(clist_iterator_next(&i), "test3") == 0);
log("OK\n");
}
void
test_list5()
{
log("Running...");
list_item_t *r;
char buffer[4];
char *dest = malloc(sizeof(char) * 4);
iterator_t it;
list_t list1 = clist_create();
list_t list2 = clist_create();
for (int i = 0; i < 2; i++) {
sprintf(buffer, "%d", i);
strcpy(dest, "i");
strcat(dest, buffer);
clist_add(&list1, dest);
}
for (int i = 0; i < 5; i++) {
sprintf(buffer, "%d", i);
strcpy(dest, "j");
strcat(dest, buffer);
clist_add(&list2, dest);
if (i == 3) r = list2.last;
}
clist_remove(&list2, r);
clist_add_all(&list1, &list2);
printf("read from list with iterator:\n");
it = clist_iterator(&list1);
while(clist_iterator_has_next(it)) {
printf("%s\n", (char *) clist_iterator_next(&it));
}
printf("%s\n", (char *) list1.first->data);
log("OK\n");
}
void
test_list6()
{
log("Running...");
char buff[127];
sprintf(buff, "Version: %s", clist_version());
log(buff);
log("OK\n");
}
|