5 * (c) 1998 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of the mLib utilities library.
12 * mLib is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
17 * mLib 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 Library General Public License for more details.
22 * You should have received a copy of the GNU Library General Public
23 * License along with mLib; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
35 /*----- Header files ------------------------------------------------------*/
42 /*----- Magical numbers ---------------------------------------------------*/
44 #define TEST_FIELDMAX 16 /* Maximum fields in a line */
46 /*----- Data structures ---------------------------------------------------*/
48 typedef struct test_results {
49 unsigned tests, failed;
52 /* --- Test field definition --- */
54 typedef struct test_type {
55 void (*cvt)(const char *buf, dstr *d); /* Conversion function */
56 void (*dump)(dstr *d, FILE *fp); /* Dump function */
59 /* --- Test chunk definition --- */
61 typedef struct test_chunk {
62 const char *name; /* Name of this chunk */
63 int (*test)(dstr /*dv*/[]); /* Test verification function */
64 const test_type *f[TEST_FIELDMAX]; /* Field definitions */
67 typedef struct test_suite {
68 const char *name; /* Name of this suite */
69 const test_chunk *chunks; /* Chunks contained in this suite */
72 /*----- Predefined data types ---------------------------------------------*/
74 extern const test_type type_hex;
75 extern const test_type type_string;
76 extern const test_type type_int;
77 extern const test_type type_long;
78 extern const test_type type_ulong;
79 extern const test_type type_uint32;
81 /*----- Functions provided ------------------------------------------------*/
83 /* --- @test_do@ --- *
85 * Arguments: @const test_suite suites[]@ = pointer to suite definitions
86 * @FILE *fp@ = test vector file, ready opened
87 * @test_results *results@ = where to put results
89 * Returns: Negative if something bad happened, or the number of
92 * Use: Runs a collection of tests against a file of test vectors and
93 * reports the results.
96 extern int test_do(const test_suite /*suite*/[],
98 test_results */*results*/);
100 /* --- @test_run@ --- *
102 * Arguments: @int argc@ = number of command line arguments
103 * @char *argv[]@ = pointer to command line arguments
104 * @const test_chunk chunk[]@ = pointer to chunk definitions
105 * @const char *def@ = name of default test vector file
109 * Use: Runs a set of test vectors to ensure that a component is
113 extern void test_run(int /*argc*/, char */*argv*/[],
114 const test_chunk /*chunk*/[],
115 const char */*def*/);
117 /*----- That's all, folks -------------------------------------------------*/