File: main.c

package info (click to toggle)
enum 1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 608 kB
  • sloc: ansic: 2,685; sh: 1,080; makefile: 63
file content (313 lines) | stat: -rw-r--r-- 9,188 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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/*
 * enum - seq- and jot-like enumerator
 *
 * Copyright (C) 2010-2012, Jan Hauke Rahm <jhr@debian.org>
 * Copyright (C) 2010-2012, Sebastian Pipping <sping@gentoo.org>
 * All rights reserved.
 *
 * Redistribution  and use in source and binary forms, with or without
 * modification,  are permitted provided that the following conditions
 * are met:
 *
 *     * Redistributions   of  source  code  must  retain  the   above
 *       copyright  notice, this list of conditions and the  following
 *       disclaimer.
 *
 *     * Redistributions  in  binary  form must  reproduce  the  above
 *       copyright  notice, this list of conditions and the  following
 *       disclaimer   in  the  documentation  and/or  other  materials
 *       provided with the distribution.
 *
 *     * Neither  the name of the <ORGANIZATION> nor the names of  its
 *       contributors  may  be  used to endorse  or  promote  products
 *       derived  from  this software without specific  prior  written
 *       permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS  IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT  NOT
 * LIMITED  TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND  FITNESS
 * FOR  A  PARTICULAR  PURPOSE ARE DISCLAIMED. IN NO EVENT  SHALL  THE
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL,    SPECIAL,   EXEMPLARY,   OR   CONSEQUENTIAL   DAMAGES
 * (INCLUDING,  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES;  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT  LIABILITY,  OR  TORT (INCLUDING  NEGLIGENCE  OR  OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include "../src/generator.h"
#include "../src/assertion.h"

#include <stdio.h>
#include <math.h> /* for fabs */
#include <string.h> /* for strncmp */
#include "utils.h"

#define ARRAY(numbers...)  { numbers }

#define TEST_YIELD(left, count, step, right, expected) \
	test_yield(left, count, step, right, expected, (sizeof(expected) / sizeof(float)))

#define TEST_CASE(successes, failures, left, count, step, right, expected_data) \
	{ \
		const float expected[] = expected_data; \
		if (TEST_YIELD(left, count, step, right, expected)) { \
			successes++; \
		} else { \
			failures++; \
		} \
	}

#define TEST_CASE_INDENT "  "

const unsigned int XX = 999;

void pseudo_call(float left, unsigned int count, float step, float right) {
	printf("# enum  ");

	if (left != XX) {
		printf("%.1f .. ", left);
	} else {
		printf(".. ");
	}

	if (count != XX) {
		if (step != XX) {
			printf("%dx %.1f .. ", count, step);
		} else {
			printf("%dx .. ", count);
		}
	} else if (step != XX) {
		printf("%.1f .. ", step);
	}

	if (right != XX) {
		printf("%.1f", right);
	}

	puts("");
}

int towards_infinity(scaffolding const * scaffold) {
	return ((scaffold->flags & (FLAG_RIGHT_SET | FLAG_COUNT_SET)) != (FLAG_RIGHT_SET | FLAG_COUNT_SET));
}

int test_yield(float left, unsigned int count, float step, float right, const float * expected, unsigned int exp_len) {
	scaffolding scaffold;
	float dest;
	unsigned int i;
	int ret = 1;

	pseudo_call(left, count, step, right);

	initialize_scaffold(&scaffold);

	if (left != XX) {
		SET_LEFT(scaffold, left);
	}

	if (count != XX) {
		SET_COUNT(scaffold, count);
	}

	if (step != XX) {
		SET_STEP(scaffold, step);
		scaffold.flags |= FLAG_USER_STEP;
	}

	if (right != XX) {
		SET_RIGHT(scaffold, right);
	}

	complete_scaffold(&scaffold);

	puts(TEST_CASE_INDENT "    Received  Expected");
	puts(TEST_CASE_INDENT "----------------------");
	for (i = 0; i < exp_len; i++) {
		yield_status status = enum_yield(&scaffold, &dest);

		printf(TEST_CASE_INDENT "%2d) %8.1f  %8.1f\n", i + 1, dest, expected[i]);

		if (status == YIELD_LAST) {
			if (i < (exp_len - 1)) {
				puts(TEST_CASE_INDENT "FAILURE (last too early, generator?)");
				ret = 0;
			}

			if (i == (exp_len - 1)) {
				if (towards_infinity(&scaffold)) {
					puts(TEST_CASE_INDENT "FAILURE (last despite infinity, generator?)");
					ret = 0;
				}
			}
		}

		if (status == YIELD_MORE) {
			if (i == (exp_len - 1)) {
				if (! towards_infinity(&scaffold)) {
					puts(TEST_CASE_INDENT "FAILURE (more instead of last, generator?)");
					ret = 0;
				}
			}
		}

		if (fabs(expected[i] - dest) > FLOAT_EQUAL_DELTA) {
			puts(TEST_CASE_INDENT "FAILURE (value mismatch)");
			ret = 0;
		}
	}

	if (! towards_infinity(&scaffold)) {
		if (scaffold.count != exp_len) {
			printf(TEST_CASE_INDENT "FAILURE (count miscalculated, expected: %d, calculated: %d)\n", exp_len, scaffold.count);
			ret = 0;
		}
	}

	if (ret) {
		puts(TEST_CASE_INDENT "Success\n");
	} else {
		puts("");
	}
	return ret;
}


#define UNESCAPE_TEST(escaped, expected)  unescape_test(escaped, expected, sizeof(expected))


void unescape_test(const char * escaped, const char * expected, size_t sizeof_expected) {
	char * const unescaped = enum_strdup(escaped);
	size_t len = unescape(unescaped, GUARD_PERCENT);

	assert(len == sizeof_expected - 1);
	assert(! strncmp(unescaped, expected, sizeof_expected - 1));

	free(unescaped);
}


void test_unescape() {
	/* Pass-through */
	UNESCAPE_TEST("abc", "abc");

	/* Multiple replacements */
	UNESCAPE_TEST("One\\ntwo\\nthree", "One\ntwo\nthree");

	/* Valid single cases */
	UNESCAPE_TEST("\\a", "\a");
	UNESCAPE_TEST("\\b", "\b");
	UNESCAPE_TEST("\\f", "\f");
	UNESCAPE_TEST("\\n", "\n");
	UNESCAPE_TEST("\\r", "\r");
	UNESCAPE_TEST("\\t", "\t");
	UNESCAPE_TEST("\\v", "\v");
	UNESCAPE_TEST("\\?", "\?");
	UNESCAPE_TEST("\\\\", "\\");

	/* Invalid single cases */
	UNESCAPE_TEST("\\z", "z");

	/* Zero terminator */
	UNESCAPE_TEST("\\0\\0\\n", "\0\0\n");

	/* Valid \0oo and \ooo cases */
	UNESCAPE_TEST("\\017X", "\017X");
	UNESCAPE_TEST("\\o17X", "\017X");
	UNESCAPE_TEST("\\700X", "\300X");

	/* Invalid \0oo and \ooo cases */
	UNESCAPE_TEST("\\018X", "\018X");
	UNESCAPE_TEST("\\088X", "\088X");
	UNESCAPE_TEST("\\800X", "800X");
	UNESCAPE_TEST("\\02", "\02");
	UNESCAPE_TEST("\\3", "\3");

	/* Valid \xhh cases */
	UNESCAPE_TEST("\\x41X", "\x41X");

	/* Invalid \xhh cases */
	UNESCAPE_TEST("\\x4GX", "\x4GX");
	UNESCAPE_TEST("\\x4gX", "\x4gX");
	UNESCAPE_TEST("\\xGGX", "xGGX");
	UNESCAPE_TEST("\\xggX", "xggX");
	UNESCAPE_TEST("\\x4", "\x04");
	UNESCAPE_TEST("\\xG", "xG");
	UNESCAPE_TEST("\\x", "x");

	/* Single backslash at the end */
	UNESCAPE_TEST("\\", "\\");
	UNESCAPE_TEST("\\\\\\", "\\\\");
}

int main() {
	unsigned int successes = 0;
	unsigned int failures = 0;

	TEST_CASE(successes, failures,  2,  4,  3, 11, ARRAY(2, 5, 8, 11))

	TEST_CASE(successes, failures, XX,  4,  3, 11, ARRAY(2, 5, 8, 11))
	TEST_CASE(successes, failures,  2, XX,  3, 11, ARRAY(2, 5, 8, 11))
	TEST_CASE(successes, failures,  2,  4, XX, 11, ARRAY(2, 5, 8, 11))
	TEST_CASE(successes, failures,  2,  4,  3, XX, ARRAY(2, 5, 8, 11))

	TEST_CASE(successes, failures, XX, XX,  3, 11, ARRAY(2, 5, 8, 11))
	TEST_CASE(successes, failures, XX,  4, XX, 11, ARRAY(8, 9, 10, 11))
	TEST_CASE(successes, failures, XX,  4,  3, XX, ARRAY(1, 4, 7, 10))
	TEST_CASE(successes, failures,  2, XX, XX, 11, ARRAY(2, 3, 4, 5, 6, 7, 8, 9, 10, 11))
	TEST_CASE(successes, failures,  2, XX,  3, XX, ARRAY(2, 5, 8, 11, 14, 17)) /* .. and more */
	TEST_CASE(successes, failures,  2,  4, XX, XX, ARRAY(2, 3, 4, 5))

	TEST_CASE(successes, failures,  2, XX, XX, XX, ARRAY(2, 3, 4, 5, 6, 7)) /* .. and more */
	TEST_CASE(successes, failures, XX,  4, XX, XX, ARRAY(1, 2, 3, 4))
	TEST_CASE(successes, failures, XX, XX,  3, XX, ARRAY(1, 4, 7, 10, 13, 16)) /* .. and more */
	TEST_CASE(successes, failures, XX, XX, XX, 11, ARRAY(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))


	/* left > right */
	TEST_CASE(successes, failures,  11,  4,  3, 2, ARRAY(11, 8, 5, 2))
	TEST_CASE(successes, failures,  11,  4, -3, 2, ARRAY(11, 8, 5, 2))
	TEST_CASE(successes, failures,  11, XX,  3, 2, ARRAY(11, 8, 5, 2))
	TEST_CASE(successes, failures,  11, XX, -3, 2, ARRAY(11, 8, 5, 2))
	TEST_CASE(successes, failures,  11,  4, XX, 2, ARRAY(11, 8, 5, 2))
	TEST_CASE(successes, failures,  11, XX, XX, 2, ARRAY(11, 10, 9, 8, 7, 6, 5, 4, 3, 2))


	/* post dot digit precision */
	TEST_CASE(successes, failures, 0.3, XX, 0.1, 0.7, ARRAY(0.3, 0.4, 0.5, 0.6, 0.7))
	TEST_CASE(successes, failures, 0.7, XX, -0.1, 0.3, ARRAY(0.7, 0.6, 0.5, 0.4, 0.3))


	/* calculation of count */
	TEST_CASE(successes, failures, 1, XX, 2, 4, ARRAY(1, 3))
	TEST_CASE(successes, failures, 1, XX, 2, 5, ARRAY(1, 3, 5))


        /* implicit step == 0 */
	TEST_CASE(successes, failures, 1, XX, XX, 1, ARRAY(1))

        /* explicit count == 1 */
	TEST_CASE(successes, failures,  1, 1, XX,  3, ARRAY(1))
	TEST_CASE(successes, failures, XX, 1, XX, XX, ARRAY(1))


	assert(successes + failures > 0);
	printf(
		"Successes:   %2u  (%6.2f%%)\n"
		"Failures:    %2u  (%6.2f%%)\n"
		"--------------------------\n"
		"Test cases:  %2u\n"
		"\n",
		successes,
		(float)successes * 100 / (successes + failures),
		failures,
		(float)failures * 100 / (successes + failures),
		(successes + failures)
	);
	
	test_unescape();
	
	return failures;
}