doc/structures.tex: Put two spaces between sentences.
[sod] / test / test.sod
1 /* -*-sod-*- *
2 *
3 * Test program for Sod functionality
4 *
5 * (c) 2016 Straylight/Edgeware
6 */
7
8 /*----- Licensing notice --------------------------------------------------*
9 *
10 * This file is part of the Sensible Object Design, an object system for C.
11 *
12 * SOD is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * SOD is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with SOD; if not, write to the Free Software Foundation,
24 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 */
26
27 code h: includes {
28 #include "sod.h"
29 }
30
31 code c: includes {
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35
36 #include "test.h"
37 }
38
39 code c: early_user {
40 /*----- Preliminary definitions -------------------------------------------*/
41
42 /* Confuse the fragment scanner... */
43 #define LBRACE {
44 #define RBRACE }
45
46 static const char *test_name;
47 static int test_seq;
48
49 static void prepare(const char *name) { test_name = name; test_seq = 0; }
50
51 static void step(int q, const char *where)
52 {
53 if (test_seq != q) {
54 fprintf(stderr, "test %s (%s): step %d instead of %d\n",
55 test_name, where, q, test_seq);
56 abort();
57 }
58 test_seq++;
59 }
60
61 static void done(int q, const char *where) { step(q, where); }
62
63 #define STRINGIFY_(x) #x
64 #define STRINGIFY(x) STRINGIFY_(x)
65 #define WHERE __FILE__ ":" STRINGIFY(__LINE__)
66 #define STEP(q) step((q), WHERE)
67 #define DONE(q) done((q), WHERE)
68
69 }
70
71 code c: (tests head)
72 [user (tests head) tests (tests tail) main (user end)]
73 {
74 /*----- Test machinery ----------------------------------------------------*/
75
76 static void tests(void)
77 LBRACE
78 }
79 code c: (tests tail) {
80 RBRACE
81
82 }
83
84 code c: main {
85 /*----- Main program ------------------------------------------------------*/
86
87 int main(void)
88 {
89 tests();
90 return (0);
91 }
92
93 }
94
95 /*----- Various kinds of method combinations ------------------------------*/
96
97 code h: early_user {
98 struct item {
99 struct item *next;
100 const char *p;
101 };
102
103 }
104
105 code c: early_user {
106 static void *xmalloc(size_t n)
107 {
108 void *p = malloc(n);
109 if (!p) { perror("malloc"); exit(EXIT_FAILURE); }
110 return (p);
111 }
112
113 static struct item *make_item(const char *p)
114 { struct item *q = xmalloc(sizeof(*q)); q->p = p; return (q); }
115
116 static void free_list(struct item *i)
117 { struct item *ii; while (i) { ii = i->next; free(i); i = ii; } }
118
119 static int check_list(struct item *i, ...)
120 {
121 va_list ap;
122 const char *p;
123 int rc = -1;
124
125 va_start(ap, i);
126 for (;;) {
127 p = va_arg(ap, const char *);
128 if (!p) break;
129 if (!i || strcmp(i->p, p) != 0) break;
130 i = i->next;
131 }
132 if (!i) rc = 0;
133 va_end(ap);
134 return (rc);
135 }
136
137 struct vec { int *v; size_t n; };
138
139 static void free_vec(struct vec *v) { free(v->v); }
140
141 static int check_vec(struct vec *v, ...)
142 {
143 va_list ap;
144 int j;
145 size_t i = 0;
146 int rc = -1;
147
148 va_start(ap, v);
149 for (;;) {
150 j = va_arg(ap, int);
151 if (j < 0) break;
152 if (i == v->n || j != v->v[i]) break;
153 i++;
154 }
155 if (i == v->n) rc = 0;
156 va_end(ap);
157 return (rc);
158 }
159
160 }
161
162 [link = SodObject, nick = base]
163 class T1Base: SodObject {
164 [combination = progn] void aprogn();
165 [combination = sum] int asum();
166 [combination = and] int aand();
167 [combination = max] int amax();
168
169 [combination = custom,
170 empty = { sod_ret = 0; },
171 decls = { struct item **head = &sod_ret; },
172 each = { *head = sod_val; head = &sod_val->next; },
173 after = { *head = 0; }]
174 struct item *alist();
175
176 [combination = custom,
177 decls = { int *v; size_t i = 0; }, methty = <int>, count = n,
178 empty = { sod_ret.v = 0; sod_ret.n = 0; },
179 before = { v = xmalloc(n*sizeof(int)); },
180 each = { v[i++] = sod_val; },
181 after = { sod_ret.v = v; sod_ret.n = n; }]
182 struct vec avec();
183 }
184
185 [link = T1Base, nick = mid]
186 class T1Mid: T1Base {
187 void base.aprogn() { STEP(1); }
188 int base.asum() { return 1; }
189 int base.aand() { return 8; }
190 int base.amax() { return 12; }
191 struct item *base.alist() { return make_item("mid"); }
192 int base.avec() { return 19; }
193 }
194
195 [link = T1Mid, nick = sub]
196 class T1Sub: T1Mid {
197 void base.aprogn() { STEP(0); }
198 int base.asum() { return 2; }
199 int base.aand() { return 6; }
200 int base.amax() { return 17; }
201 struct item *base.alist() { return make_item("sub"); }
202 int base.avec() { return 4; }
203 }
204
205 code c: tests {
206 prepare("aggregate, base");
207 { SOD_DECL(T1Base, t1, NO_KWARGS);
208 struct item *l;
209 struct vec v;
210 STEP(0); T1Base_aprogn(t1); STEP(1);
211 if (T1Base_asum(t1) == 0) STEP(2);
212 if (T1Base_aand(t1) == 1) STEP(3);
213 if (!t1->_vt->base.amax) STEP(4);
214 l = T1Base_alist(t1);
215 if (!l) STEP(5);
216 v = T1Base_avec(t1);
217 if (!v.n) STEP(6);
218 DONE(7);
219 }
220 prepare("aggregate, mid");
221 { SOD_DECL(T1Mid, t1, NO_KWARGS);
222 struct item *l;
223 struct vec v;
224 STEP(0); T1Base_aprogn(t1); /* 1 */
225 if (T1Base_asum(t1) == 1) STEP(2);
226 if (T1Base_aand(t1) == 8) STEP(3);
227 if (T1Base_amax(t1) == 12) STEP(4);
228 l = T1Base_alist(t1);
229 if (!check_list(l, "mid", (const char *)0)) STEP(5);
230 free_list(l);
231 v = T1Base_avec(t1);
232 if (!check_vec(&v, 19, -1)) STEP(6);
233 free_vec(&v);
234 DONE(7);
235 }
236 prepare("aggregate, sub");
237 { SOD_DECL(T1Sub, t1, NO_KWARGS);
238 struct item *l;
239 struct vec v;
240 T1Base_aprogn(t1); /* 0, 1 */
241 if (T1Base_asum(t1) == 3) STEP(2);
242 if (T1Base_aand(t1) == 8) STEP(3);
243 if (T1Base_amax(t1) == 17) STEP(4);
244 l = T1Base_alist(t1);
245 if (!check_list(l, "sub", "mid", (const char *)0)) STEP(5);
246 free_list(l);
247 v = T1Base_avec(t1);
248 if (!check_vec(&v, 4, 19, -1)) STEP(6);
249 free_vec(&v);
250 DONE(7);
251 }
252 }
253
254 /*----- Slot and user initargs --------------------------------------------*/
255
256 [link = SodObject, nick = t2]
257 class T2: SodObject {
258 [initarg = x] int x = 0;
259
260 initarg int y = 1;
261 init { if (!y) STEP(0); }
262 }
263
264 code c: tests {
265 prepare("initargs, defaults");
266 { SOD_DECL(T2, t, NO_KWARGS);
267 if (t->t2.x == 0) STEP(0);
268 DONE(1);
269 }
270 prepare("initargs, explicit");
271 { SOD_DECL(T2, t, KWARGS(K(x, 42) K(y, 0)));
272 if (t->t2.x == 42) STEP(1);
273 DONE(2);
274 }
275 }
276
277 /*----- Keyword argument propagation --------------------------------------*/
278
279 [link = SodObject, nick = base]
280 class T3Base: SodObject {
281 void m0(?int x) { STEP(x); }
282 void m1(?) { }
283 }
284
285 [link = T3Base, nick = mid]
286 class T3Mid: T3Base {
287 void base.m0(?int y) { STEP(y); CALL_NEXT_METHOD; }
288 void base.m1(?) { STEP(4); CALL_NEXT_METHOD; }
289 }
290
291 [link = T3Mid, nick = sub]
292 class T3Sub: T3Mid {
293 void base.m0(?int z) { STEP(z); CALL_NEXT_METHOD; }
294 void base.m1(?int z) { STEP(z); CALL_NEXT_METHOD; }
295 }
296
297 code c: tests {
298 prepare("kwargs");
299 { SOD_DECL(T3Sub, t, NO_KWARGS);
300 T3Base_m0(t, KWARGS(K(z, 0) K(y, 1) K(x, 2)));
301 T3Base_m1(t, KWARGS(K(z, 3)));
302 DONE(5);
303 }
304 }
305
306 /*----- Metaclass initialization ------------------------------------------*/
307
308 [link = SodClass, nick = mycls]
309 class MyClass: SodClass {
310 int x = -1, y, z = 2;
311 }
312
313 [link = SodObject, nick = myobj, metaclass = MyClass]
314 class MyObject: SodObject {
315 class mycls.x = 0, mycls.y = 1;
316 }
317
318 code c: tests {
319 prepare("metaclass, init");
320 STEP(MyObject__cls_obj->mycls.x);
321 STEP(MyObject__cls_obj->mycls.y);
322 STEP(MyObject__cls_obj->mycls.z);
323 DONE(3);
324 }
325
326 /*----- That's all, folks -------------------------------------------------*/