Infrastructure: Strip away crufty CVS $Id$ tags.
[mLib] / testrig.h
CommitLineData
0875b58f 1/* -*-c-*-
2 *
0875b58f 3 * Generic test driver
4 *
5 * (c) 1998 Straylight/Edgeware
6 */
7
d4efbcd9 8/*----- Licensing notice --------------------------------------------------*
0875b58f 9 *
10 * This file is part of the mLib utilities library.
11 *
12 * mLib is free software; you can redistribute it and/or modify
c846879c 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.
d4efbcd9 16 *
0875b58f 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
c846879c 20 * GNU Library General Public License for more details.
d4efbcd9 21 *
c846879c 22 * You should have received a copy of the GNU Library General Public
0bd98442 23 * License along with mLib; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 * MA 02111-1307, USA.
0875b58f 26 */
27
dadc1afb 28#ifndef MLIB_TESTER_H
29#define MLIB_TESTER_H
0875b58f 30
31#ifdef __cplusplus
32 extern "C" {
33#endif
34
35/*----- Header files ------------------------------------------------------*/
36
37#include <stddef.h>
38
dadc1afb 39#include "bits.h"
0875b58f 40#include "dstr.h"
41
42/*----- Magical numbers ---------------------------------------------------*/
43
44#define TEST_FIELDMAX 16 /* Maximum fields in a line */
45
46/*----- Data structures ---------------------------------------------------*/
47
9fcce036
MW
48typedef struct test_results {
49 unsigned tests, failed;
50} test_results;
51
0875b58f 52/* --- Test field definition --- */
53
54typedef struct test_type {
55 void (*cvt)(const char *buf, dstr *d); /* Conversion function */
56 void (*dump)(dstr *d, FILE *fp); /* Dump function */
57} test_type;
58
59/* --- Test chunk definition --- */
60
61typedef struct test_chunk {
62 const char *name; /* Name of this chunk */
0319f58d 63 int (*test)(dstr /*dv*/[]); /* Test verification function */
d66299dc 64 const test_type *f[TEST_FIELDMAX]; /* Field definitions */
0875b58f 65} test_chunk;
66
9fcce036
MW
67typedef struct test_suite {
68 const char *name; /* Name of this suite */
69 const test_chunk *chunks; /* Chunks contained in this suite */
70} test_suite;
71
0875b58f 72/*----- Predefined data types ---------------------------------------------*/
73
d66299dc 74extern const test_type type_hex;
75extern const test_type type_string;
76extern const test_type type_int;
dadc1afb 77extern const test_type type_long;
78extern const test_type type_ulong;
79extern const test_type type_uint32;
0875b58f 80
81/*----- Functions provided ------------------------------------------------*/
82
9fcce036
MW
83/* --- @test_do@ --- *
84 *
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
88 *
89 * Returns: Negative if something bad happened, or the number of
90 * failures.
91 *
92 * Use: Runs a collection of tests against a file of test vectors and
93 * reports the results.
94 */
95
96extern int test_do(const test_suite /*suite*/[],
97 FILE */*fp*/,
98 test_results */*results*/);
99
0875b58f 100/* --- @test_run@ --- *
101 *
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
106 *
107 * Returns: Doesn't.
108 *
109 * Use: Runs a set of test vectors to ensure that a component is
110 * working properly.
111 */
112
113extern void test_run(int /*argc*/, char */*argv*/[],
114 const test_chunk /*chunk*/[],
115 const char */*def*/);
116
117/*----- That's all, folks -------------------------------------------------*/
118
119#ifdef __cplusplus
120 }
121#endif
122
123#endif