chiark / gitweb /
Various, style: Generally prefer `: ' over ` : '.
[sod] / test / test.sod
CommitLineData
4a83289a
MW
1/* -*-sod-*- */
2
fd040f06 3code h: includes {
4a83289a
MW
4#include "sod.h"
5}
6
fd040f06 7code c: includes {
4a83289a
MW
8#include <stdio.h>
9#include <stdlib.h>
10#include <string.h>
11
12#include "test.h"
13}
14
fd040f06 15code c: early_user {
4a83289a
MW
16/*----- Preliminary definitions -------------------------------------------*/
17
18/* Confuse the fragment scanner... */
19#define LBRACE {
20#define RBRACE }
21
22static const char *test_name;
23static int test_seq;
24
25static void prepare(const char *name) { test_name = name; test_seq = 0; }
26
27static void step(int q, const char *where)
28{
29 if (test_seq != q) {
30 fprintf(stderr, "test %s (%s): step %d instead of %d\n",
31 test_name, where, q, test_seq);
32 abort();
33 }
34 test_seq++;
35}
36
37static void done(int q, const char *where) { step(q, where); }
38
39#define STRINGIFY_(x) #x
40#define STRINGIFY(x) STRINGIFY_(x)
41#define WHERE __FILE__ ":" STRINGIFY(__LINE__)
42#define STEP(q) step((q), WHERE)
43#define DONE(q) done((q), WHERE)
44
45}
46
fd040f06 47code c: (tests head)
4a83289a
MW
48 [user (tests head) tests (tests tail) main (user end)]
49{
50/*----- Test machinery ----------------------------------------------------*/
51
52static void tests(void)
53LBRACE
54}
fd040f06 55code c: (tests tail) {
4a83289a
MW
56RBRACE
57
58}
59
fd040f06 60code c: main {
4a83289a
MW
61/*----- Main program ------------------------------------------------------*/
62
63int main(void)
64{
65 tests();
66 return (0);
67}
68
69}
70
71/*----- Various kinds of method combinations ------------------------------*/
72
fd040f06 73code h: early_user {
4a83289a
MW
74struct item {
75 struct item *next;
76 const char *p;
77};
78
79}
80
fd040f06 81code c: early_user {
4a83289a
MW
82static void *xmalloc(size_t n)
83{
84 void *p = malloc(n);
85 if (!p) { perror("malloc"); exit(EXIT_FAILURE); }
86 return (p);
87}
88
89static struct item *make_item(const char *p)
90 { struct item *q = xmalloc(sizeof(*q)); q->p = p; return (q); }
91
92static void free_list(struct item *i)
93 { struct item *ii; while (i) { ii = i->next; free(i); i = ii; } }
94
95static int check_list(struct item *i, ...)
96{
97 va_list ap;
98 const char *p;
99 int rc = -1;
100
101 va_start(ap, i);
102 for (;;) {
103 p = va_arg(ap, const char *);
104 if (!p) break;
105 if (!i || strcmp(i->p, p) != 0) break;
106 i = i->next;
107 }
108 if (!i) rc = 0;
109 va_end(ap);
110 return (rc);
111}
112
113struct vec { int *v; size_t n; };
114
115static void free_vec(struct vec *v) { free(v->v); }
116
117static int check_vec(struct vec *v, ...)
118{
119 va_list ap;
120 int j;
121 size_t i = 0;
122 int rc = -1;
123
124 va_start(ap, v);
125 for (;;) {
126 j = va_arg(ap, int);
127 if (j < 0) break;
128 if (i == v->n || j != v->v[i]) break;
129 i++;
130 }
131 if (i == v->n) rc = 0;
132 va_end(ap);
133 return (rc);
134}
135
136}
137
138[link = SodObject, nick = t1base]
fd040f06 139class T1Base: SodObject {
4a83289a
MW
140 [combination = progn] void aprogn() { STEP(1); }
141 [combination = sum] int asum() { return 1; }
142 [combination = and] int aand() { return 8; }
143 [combination = max] int amax() { return 12; }
144
145 [combination = custom,
146 decls = { struct item **head = &sod_ret; },
147 each = { *head = sod_val; head = &sod_val->next; },
148 after = { *head = 0; }]
149 struct item *alist() { return make_item("base"); }
150
151 [combination = custom,
152 decls = { int *v; size_t i = 0; }, methty = <int>, count = n,
153 before = { v = xmalloc(n*sizeof(int)); },
154 each = { v[i++] = sod_val; },
155 after = { sod_ret.v = v; sod_ret.n = n; }]
156 struct vec avec();
157 int t1base.avec() { return 19; }
158}
159
160[link = T1Base, nick = t1sub]
fd040f06 161class T1Sub: T1Base {
4a83289a
MW
162 void t1base.aprogn() { STEP(0); }
163 int t1base.asum() { return 2; }
164 int t1base.aand() { return 6; }
165 int t1base.amax() { return 17; }
166 struct item *t1base.alist() { return make_item("sub"); }
167 int t1base.avec() { return 4; }
168}
169
fd040f06 170code c: tests {
4a83289a 171 prepare("aggregate, base");
a142609c 172 { SOD_DECL(T1Base, t1, NO_KWARGS);
4a83289a
MW
173 struct item *l;
174 struct vec v;
175 STEP(0); T1Base_aprogn(t1); /* 1 */
176 if (T1Base_asum(t1) == 1) STEP(2);
177 if (T1Base_aand(t1) == 8) STEP(3);
178 if (T1Base_amax(t1) == 12) STEP(4);
179 l = T1Base_alist(t1);
180 if (!check_list(l, "base", (const char *)0)) STEP(5);
181 free_list(l);
182 v = T1Base_avec(t1);
183 if (!check_vec(&v, 19, -1)) STEP(6);
184 free_vec(&v);
185 DONE(7);
186 }
187 prepare("aggregate, sub");
a142609c 188 { SOD_DECL(T1Sub, t1, NO_KWARGS);
4a83289a
MW
189 struct item *l;
190 struct vec v;
191 T1Base_aprogn(t1); /* 0, 1 */
192 if (T1Base_asum(t1) == 3) STEP(2);
193 if (T1Base_aand(t1) == 8) STEP(3);
194 if (T1Base_amax(t1) == 17) STEP(4);
195 l = T1Base_alist(t1);
196 if (!check_list(l, "sub", "base", (const char *)0)) STEP(5);
197 free_list(l);
198 v = T1Base_avec(t1);
199 if (!check_vec(&v, 4, 19, -1)) STEP(6);
200 free_vec(&v);
201 DONE(7);
202 }
203}
204
b2983f35
MW
205/*----- Slot and user initargs --------------------------------------------*/
206
207[link = SodObject, nick = t2]
fd040f06 208class T2: SodObject {
b2983f35
MW
209 [initarg = x] int x = 0;
210
211 initarg int y = 1;
212 init { if (!y) STEP(0); }
213}
214
fd040f06 215code c: tests {
b2983f35
MW
216 prepare("initargs, defaults");
217 { SOD_DECL(T2, t, NO_KWARGS);
218 if (t->t2.x == 0) STEP(0);
219 DONE(1);
220 }
221 prepare("initargs, explicit");
222 { SOD_DECL(T2, t, KWARGS(K(x, 42) K(y, 0)));
223 if (t->t2.x == 42) STEP(1);
224 DONE(2);
225 }
226}
227
bce58d37
MW
228/*----- Keyword argument propagation --------------------------------------*/
229
230[link = SodObject, nick = base]
fd040f06 231class T3Base: SodObject {
bce58d37
MW
232 void m0(?int x) { STEP(x); }
233 void m1(?) { }
234}
235
12386a26 236[link = T3Base, nick = mid]
fd040f06 237class T3Mid: T3Base {
12386a26
MW
238 void base.m0(?int y) { STEP(y); CALL_NEXT_METHOD; }
239 void base.m1(?) { STEP(4); CALL_NEXT_METHOD; }
240}
241
242[link = T3Mid, nick = sub]
fd040f06 243class T3Sub: T3Mid {
bce58d37
MW
244 void base.m0(?int z) { STEP(z); CALL_NEXT_METHOD; }
245 void base.m1(?int z) { STEP(z); CALL_NEXT_METHOD; }
246}
247
fd040f06 248code c: tests {
bce58d37
MW
249 prepare("kwargs");
250 { SOD_DECL(T3Sub, t, NO_KWARGS);
12386a26
MW
251 T3Base_m0(t, KWARGS(K(z, 0) K(y, 1) K(x, 2)));
252 T3Base_m1(t, KWARGS(K(z, 3)));
253 DONE(5);
bce58d37
MW
254 }
255}
256
4a83289a 257/*----- That's all, folks -------------------------------------------------*/