PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches
liblwgeom/cunit/cu_tester.c
Go to the documentation of this file.
1/**********************************************************************
2 *
3 * PostGIS - Spatial Types for PostgreSQL
4 * http://postgis.net
5 * Copyright 2008 Paul Ramsey <pramsey@cleverelephant.ca>
6 *
7 * This is free software; you can redistribute and/or modify it under
8 * the terms of the GNU General Public Licence. See the COPYING file.
9 *
10 **********************************************************************/
11
12#include <stdio.h>
13#include <string.h>
14#include "CUnit/Basic.h"
15#include "liblwgeom_internal.h"
16#include "cu_tester.h"
17#include "../postgis_config.h"
18
20
21/* Internal funcs */
22static void
23cu_errorreporter(const char *fmt, va_list ap);
24
25static void
26cu_noticereporter(const char *fmt, va_list ap);
27
28static void
29cu_debuglogger(int level, const char *fmt, va_list ap);
30
31
32/* ADD YOUR SUITE SETUP FUNCTION HERE (1 of 2) */
33extern void print_suite_setup();
34extern void algorithms_suite_setup();
35extern void buildarea_suite_setup();
36extern void clean_suite_setup();
37extern void clip_by_rect_suite_setup();
38extern void force_sfs_suite_setup(void);
39extern void geodetic_suite_setup(void);
40extern void geos_suite_setup(void);
41extern void geos_cluster_suite_setup(void);
42extern void unionfind_suite_setup(void);
43extern void homogenize_suite_setup(void);
44extern void in_encoded_polyline_suite_setup(void);
45extern void in_geojson_suite_setup(void);
46extern void iterator_suite_setup(void);
47extern void twkb_in_suite_setup(void);
48extern void gserialized1_suite_setup(void);
49extern void gserialized2_suite_setup(void);
50extern void lwstroke_suite_setup(void);
51extern void measures_suite_setup(void);
52extern void effectivearea_suite_setup(void);
53extern void chaikin_suite_setup(void);
54extern void filterm_suite_setup(void);
56extern void misc_suite_setup(void);
57extern void node_suite_setup(void);
58extern void out_encoded_polyline_suite_setup(void);
59extern void out_geojson_suite_setup(void);
60extern void out_gml_suite_setup(void);
61extern void out_kml_suite_setup(void);
62extern void out_svg_suite_setup(void);
63extern void twkb_out_suite_setup(void);
64extern void out_x3d_suite_setup(void);
65extern void ptarray_suite_setup(void);
66#if HAVE_SFCGAL
67extern void sfcgal_suite_setup(void);
68#endif
69extern void split_suite_setup(void);
70extern void stringbuffer_suite_setup(void);
71extern void tree_suite_setup(void);
72extern void triangulate_suite_setup(void);
73extern void varint_suite_setup(void);
74extern void wkt_out_suite_setup(void);
75extern void wkb_out_suite_setup(void);
76extern void surface_suite_setup(void);
77extern void wkb_in_suite_setup(void);
78extern void wkt_in_suite_setup(void);
79extern void wrapx_suite_setup(void);
80
81
82/* AND ADD YOUR SUITE SETUP FUNCTION HERE (2 of 2) */
136
137
138#define MAX_CUNIT_MSG_LENGTH 256
139
140/*
141** The main() function for setting up and running the tests.
142** Returns a CUE_SUCCESS on successful running, another
143** CUnit error code on failure.
144*/
145int main(int argc, char *argv[])
146{
147 int index;
148 char *suite_name;
149 CU_pSuite suite_to_run;
150 char *test_name;
151 CU_pTest test_to_run = NULL;
152 CU_ErrorCode errCode = 0;
153 CU_pTestRegistry registry;
154 int num_run;
155 int num_failed;
156 PG_SuiteSetup *setupfunc = setupfuncs;
157
158 /* Install the custom error handler */
161
162 /* Initialize the CUnit test registry */
163 if (CUE_SUCCESS != CU_initialize_registry())
164 {
165 errCode = CU_get_error();
166 printf(" Error attempting to initialize registry: %d. See CUError.h for error code list.\n", errCode);
167 return errCode;
168 }
169
170 /* Register all the test suites. */
171 while ( *setupfunc )
172 {
173 (*setupfunc)();
174 setupfunc++;
175 }
176
177 /* Run all tests using the CUnit Basic interface */
178 CU_basic_set_mode(CU_BRM_VERBOSE);
179 if (argc <= 1)
180 {
181 errCode = CU_basic_run_tests();
182 }
183 else
184 {
185 /* NOTE: The cunit functions used here (CU_get_registry, CU_get_suite_by_name, and CU_get_test_by_name) are
186 * listed with the following warning: "Internal CUnit system functions. Should not be routinely called by users."
187 * However, there didn't seem to be any other way to get tests by name, so we're calling them. */
188 registry = CU_get_registry();
189 for (index = 1; index < argc; index++)
190 {
191 suite_name = argv[index];
192 test_name = NULL;
193 suite_to_run = CU_get_suite_by_name(suite_name, registry);
194 if (NULL == suite_to_run)
195 {
196 /* See if it's a test name instead of a suite name. */
197 suite_to_run = registry->pSuite;
198 while (suite_to_run != NULL)
199 {
200 test_to_run = CU_get_test_by_name(suite_name, suite_to_run);
201 if (test_to_run != NULL)
202 {
203 /* It was a test name. */
204 test_name = suite_name;
205 suite_name = suite_to_run->pName;
206 break;
207 }
208 suite_to_run = suite_to_run->pNext;
209 }
210 }
211 if (suite_to_run == NULL)
212 {
213 printf("\n'%s' does not appear to be either a suite name or a test name.\n\n", suite_name);
214 }
215 else
216 {
217 if (test_name != NULL && test_to_run != NULL)
218 {
219 /* Run only this test. */
220 printf("\nRunning test '%s' in suite '%s'.\n", test_name, suite_name);
221 /* This should be CU_basic_run_test, but that method is broken, see:
222 * https://sourceforge.net/tracker/?func=detail&aid=2851925&group_id=32992&atid=407088
223 * This one doesn't output anything for success, so we have to do it manually. */
224 errCode = CU_run_test(suite_to_run, test_to_run);
225 if (errCode != CUE_SUCCESS)
226 {
227 printf(" Error attempting to run tests: %d. See CUError.h for error code list.\n", errCode);
228 }
229 else
230 {
231 num_run = CU_get_number_of_asserts();
232 num_failed = CU_get_number_of_failures();
233 printf("\n %s - asserts - %3d passed, %3d failed, %3d total.\n\n",
234 (0 == num_failed ? "PASSED" : "FAILED"), (num_run - num_failed), num_failed, num_run);
235 }
236 }
237 else
238 {
239 /* Run all the tests in the suite. */
240 printf("\nRunning all tests in suite '%s'.\n", suite_name);
241 /* This should be CU_basic_run_suite, but that method is broken, see:
242 * https://sourceforge.net/tracker/?func=detail&aid=2851925&group_id=32992&atid=407088
243 * This one doesn't output anything for success, so we have to do it manually. */
244 errCode = CU_run_suite(suite_to_run);
245 if (errCode != CUE_SUCCESS)
246 {
247 printf(" Error attempting to run tests: %d. See CUError.h for error code list.\n", errCode);
248 }
249 else
250 {
251 num_run = CU_get_number_of_tests_run();
252 num_failed = CU_get_number_of_tests_failed();
253 printf("\n %s - tests - %3d passed, %3d failed, %3d total.\n",
254 (0 == num_failed ? "PASSED" : "FAILED"), (num_run - num_failed), num_failed, num_run);
255 num_run = CU_get_number_of_asserts();
256 num_failed = CU_get_number_of_failures();
257 printf(" - asserts - %3d passed, %3d failed, %3d total.\n\n",
258 (num_run - num_failed), num_failed, num_run);
259 }
260 }
261 }
262 }
263 /* Presumably if the CU_basic_run_[test|suite] functions worked, we wouldn't have to do this. */
264 CU_basic_show_failures(CU_get_failure_list());
265 printf("\n\n"); /* basic_show_failures leaves off line breaks. */
266 }
267 num_failed = CU_get_number_of_failures();
268 CU_cleanup_registry();
269 return num_failed;
270}
277static void
278cu_errorreporter(const char *fmt, va_list ap)
279{
280 vsnprintf (cu_error_msg, MAX_CUNIT_MSG_LENGTH, fmt, ap);
282 /*fprintf(stderr, "ERROR: %s\n", cu_error_msg);*/
283}
284
285static void
286cu_noticereporter(const char *fmt, va_list ap)
287{
288 char buf[MAX_CUNIT_MSG_LENGTH+1];
289 vsnprintf (buf, MAX_CUNIT_MSG_LENGTH, fmt, ap);
290 buf[MAX_CUNIT_MSG_LENGTH]='\0';
291 fprintf(stderr, "NOTICE: %s\n", buf);
292}
293
294static void
295cu_debuglogger(int level, const char *fmt, va_list ap)
296{
297 char buf[MAX_CUNIT_MSG_LENGTH+1];
298 vsnprintf (buf, MAX_CUNIT_MSG_LENGTH, fmt, ap);
299 buf[MAX_CUNIT_MSG_LENGTH]='\0';
300 fprintf(stderr, "DEBUG%d: %s\n", level, buf);
301}
302
303void
308
309/* Utility functions for testing */
310
311/* do_transformation_test
312 * - reads input_wkt and expected_wkt
313 * - asserts output of transfn(input) = expected
314 * - cleans up
315 */
316void
317do_fn_test(LWGEOM* (*transfn)(LWGEOM*), char *input_wkt, char *expected_wkt)
318{
319 LWGEOM* input = lwgeom_from_wkt(input_wkt, LW_PARSER_CHECK_NONE);
320 LWGEOM* expected = lwgeom_from_wkt(expected_wkt, LW_PARSER_CHECK_NONE);
321 LWGEOM* observed = transfn(input);
322
323 ASSERT_LWGEOM_EQUAL(observed, expected);
324
325 lwgeom_free(input);
326 lwgeom_free(expected);
327 lwgeom_free(observed);
328}
329
void sfcgal_suite_setup(void)
Definition cu_sfcgal.c:95
void out_x3d_suite_setup(void)
Definition cu_out_x3d.c:183
void in_encoded_polyline_suite_setup(void)
void clip_by_rect_suite_setup()
#define MAX_CUNIT_MSG_LENGTH
void out_encoded_polyline_suite_setup(void)
void geos_cluster_suite_setup(void)
void force_sfs_suite_setup(void)
void buildarea_suite_setup()
static void cu_debuglogger(int level, const char *fmt, va_list ap)
void unionfind_suite_setup(void)
void do_fn_test(LWGEOM *(*transfn)(LWGEOM *), char *input_wkt, char *expected_wkt)
void wkt_out_suite_setup(void)
Definition cu_out_wkt.c:211
void twkb_in_suite_setup(void)
Definition cu_in_twkb.c:233
void homogenize_suite_setup(void)
void misc_suite_setup(void)
void gserialized2_suite_setup(void)
void measures_suite_setup(void)
void wrapx_suite_setup(void)
Definition cu_wrapx.c:194
void cu_error_msg_reset()
PG_SuiteSetup setupfuncs[]
void iterator_suite_setup(void)
void triangulate_suite_setup(void)
void stringbuffer_suite_setup(void)
void chaikin_suite_setup(void)
Definition cu_chaikin.c:61
void split_suite_setup(void)
Definition cu_split.c:287
void clean_suite_setup()
Definition cu_clean.c:159
void tree_suite_setup(void)
Definition cu_tree.c:426
void out_gml_suite_setup(void)
static void cu_errorreporter(const char *fmt, va_list ap)
CUnit error handler Log message in a global var instead of printing in stderr.
void twkb_out_suite_setup(void)
void out_svg_suite_setup(void)
Definition cu_out_svg.c:321
void geos_suite_setup(void)
Definition cu_geos.c:199
void effectivearea_suite_setup(void)
void in_geojson_suite_setup(void)
void print_suite_setup()
Definition cu_print.c:166
void wkb_in_suite_setup(void)
Definition cu_in_wkb.c:278
char cu_error_msg[MAX_CUNIT_ERROR_LENGTH+1]
void wkb_out_suite_setup(void)
Definition cu_out_wkb.c:215
void geodetic_suite_setup(void)
void ptarray_suite_setup(void)
Definition cu_ptarray.c:624
void node_suite_setup(void)
Definition cu_node.c:65
void out_kml_suite_setup(void)
Definition cu_out_kml.c:239
void surface_suite_setup(void)
Definition cu_surface.c:404
void varint_suite_setup(void)
Definition cu_varint.c:251
void out_geojson_suite_setup(void)
void wkt_in_suite_setup(void)
Definition cu_in_wkt.c:407
void algorithms_suite_setup()
void minimum_bounding_circle_suite_setup(void)
void gserialized1_suite_setup(void)
void filterm_suite_setup(void)
Definition cu_filterm.c:59
static void cu_noticereporter(const char *fmt, va_list ap)
void lwstroke_suite_setup(void)
void(* PG_SuiteSetup)(void)
#define MAX_CUNIT_ERROR_LENGTH
#define ASSERT_LWGEOM_EQUAL(o, e)
void(*) typedef void(*) voi lwgeom_set_handlers)(lwallocator allocator, lwreallocator reallocator, lwfreeor freeor, lwreporter errorreporter, lwreporter noticereporter)
Install custom memory management and error handling functions you want your application to use.
void lwgeom_free(LWGEOM *geom)
Definition lwgeom.c:1138
#define LW_PARSER_CHECK_NONE
Definition liblwgeom.h:2060
void lwgeom_set_debuglogger(lwdebuglogger debuglogger)
Definition lwutil.c:171
LWGEOM * lwgeom_from_wkt(const char *wkt, const char check)
Definition lwin_wkt.c:905
int main()