summaryrefslogtreecommitdiff
path: root/tools/test.h
blob: c6ad38e74352052f5b895d0921ba79eb435ba165 (plain)
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
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set et sw=2 ts=2: */
/***************************************************************************
 *            test.h
 *
 *  Wed Dec 16 12:33:19 CET 2009
 *  Copyright 2009 Bent Bisballe Nyeng
 *  deva@aasimon.org
 ****************************************************************************/

/*
 *  This file is part of Pracro.
 *
 *  Pracro is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  Pracro is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with Pracro; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#ifndef __PRACRO_TEST_H__
#define __PRACRO_TEST_H__

#include <stdio.h>

#define TEST_REPORT {                                                 \
    fprintf(stderr, "\nTest report:\n%d tests\n%d test failed.\n",    \
            TEST_num_tests, TEST_num_fails);                          \
  }

#define TEST_BEGIN           \
  int main() {               \
  int TEST_num_fails = 0;    \
  int TEST_num_tests = 0;    \
  {}

#define TEST_END {                \
    TEST_REPORT;                  \
    return TEST_num_fails != 0;   \
  } }

#define TEST_OK(m) {                  \
    fprintf(stderr, "  OK: "m"\n");   \
  }

#define TEST_FAIL(m) {                                    \
    fprintf(stderr, "  FAIL: "m"\t\t\t<------------\n");  \
    TEST_num_fails++;                                     \
  }

#define TEST_FATAL(m) {                                   \
  fprintf(stderr, "FATAL: %s\t\t\t<============\n", m);   \
  TEST_num_fails++;                                       \
  { TEST_END; }

#define TEST_MSG(fmt...) {                      \
    fprintf(stderr, "\n");                      \
    fprintf(stderr, fmt);                       \
    fprintf(stderr, " (line %d)\n", __LINE__);  \
  }

#define TEST_BASE(fmt...) {      \
    TEST_num_tests++;            \
    TEST_MSG(fmt);               \
  }

#define TEST_TRUE(x, fmt...) {              \
    TEST_BASE(fmt);                         \
    if(x) { TEST_OK(#x" is true.") }        \
    else { TEST_FAIL(#x" is not true.") }   \
  }

#define TEST_FALSE(x, fmt...) {             \
    TEST_BASE(fmt);                         \
    if(!x) { TEST_OK(#x" is false.") }      \
    else { TEST_FAIL(#x" is not false.") }  \
  }

#define TEST_EQUAL(x, y, fmt...) {                     \
    TEST_BASE(fmt);                                    \
    if(x == y) { TEST_OK(#x" and "#y" are equal.") }   \
    else { TEST_FAIL(#x" and "#y" are not equal.") }   \
  }

#define TEST_NOTEQUAL(x, y, fmt...) {                      \
    TEST_BASE(fmt);                                        \
    if(x != y) { TEST_OK(#x" and "#y" are not equal.") }   \
    else { TEST_FAIL(#x" and "#y" are equal.") }           \
  }

#define TEST_GREATER_THAN(x, y, fmt...) {                 \
    TEST_BASE(fmt);                                       \
    if(x > y) { TEST_OK(#x" are greater than "#y".") }    \
    else { TEST_FAIL(#x" are not greater than "#y".") }   \
  }

#define TEST_LESS_THAN(x, y, fmt...) {                      \
    TEST_BASE(fmt);                                         \
    if(x < y) { TEST_OK(#x" are less than "#y".") }         \
    else { TEST_FAIL(#x" are not less than "#y".") }        \
  }

#define TEST_EQUAL_STR(x, y, fmt...) {                       \
    TEST_BASE(fmt);                                          \
    std::string s1 = x;                                      \
    std::string s2 = y;                                      \
    fprintf(stderr, "Comparing: \"%s\" == \"%s\"\n",         \
            s1.c_str(), s2.c_str());                         \
    if(s1 == s2) {                                           \
      TEST_OK(#x" and "#y" are equal.");                     \
    } else {                                                 \
      TEST_FAIL(#x" and "#y" are not equal.");               \
    }                                                        \
  }

#define TEST_NOTEQUAL_STR(x, y, fmt...) {                    \
    TEST_BASE(fmt);                                          \
    std::string s1 = x;                                      \
    std::string s2 = y;                                      \
    fprintf(stderr, "Comparing: \"%s\" != \"%s\"\n",         \
            s1.c_str(), s2.c_str());                         \
    if(s1 != s2) {                                           \
      TEST_OK(#x" and "#y" not are equal.");                 \
    } else {                                                 \
      TEST_FAIL(#x" and "#y" are equal.");                   \
    }                                                        \
  }

#define TEST_EQUAL_INT(x, y, fmt...) {                        \
    TEST_BASE(fmt);                                           \
    int i1 = x;                                               \
    int i2 = y;                                               \
    fprintf(stderr, "Comparing: \"%d\" == \"%d\"\n", i1, i2); \
    if(i1 == i2) {                                            \
      TEST_OK(#x" and "#y" are equal.");                      \
    } else {                                                  \
      TEST_FAIL(#x" and "#y" are not equal.");                \
    }                                                         \
  }

#define TEST_NOTEQUAL_INT(x, y, fmt...) {                     \
    TEST_BASE(fmt);                                           \
    int i1 = x;                                               \
    int i2 = y;                                               \
    fprintf(stderr, "Comparing: \"%d\" != \"%d\"\n", i1, i2); \
    if(i1 != i2) {                                            \
      TEST_OK(#x" and "#y" are not equal.");                  \
    } else {                                                  \
      TEST_FAIL(#x" and "#y" are equal.");                    \
    }                                                         \
  }

#define TEST_EQUAL_PTR(x, y, fmt...) {                        \
    TEST_BASE(fmt);                                           \
    void *i1 = x;                                             \
    void *i2 = y;                                             \
    fprintf(stderr, "Comparing: \"%p\" == \"%p\"\n", i1, i2); \
    if(i1 == i2) {                                            \
      TEST_OK(#x" and "#y" are equal.");                      \
    } else {                                                  \
      TEST_FAIL(#x" and "#y" are not equal.");                \
    }                                                         \
  }

#define TEST_NOTEQUAL_PTR(x, y, fmt...) {                     \
    TEST_BASE(fmt);                                           \
    void *i1 = x;                                             \
    void *i2 = y;                                             \
    fprintf(stderr, "Comparing: \"%p\" != \"%p\"\n", i1, i2); \
    if(i1 != i2) {                                            \
      TEST_OK(#x" and "#y" are not equal.");                  \
    } else {                                                  \
      TEST_FAIL(#x" and "#y" are equal.");                    \
    }                                                         \
  }

#define TEST_EQUAL_FLOAT(x, y, fmt...) {                      \
    TEST_BASE(fmt);                                           \
    double d1 = x;                                            \
    double d2 = y;                                            \
    fprintf(stderr, "Comparing: \"%.64f\" == \"%.64f\"\n", d1, d2); \
    if(d1 >= d2 && d1 <= d2) {                                            \
      TEST_OK(#x" and "#y" are equal.");                      \
    } else {                                                  \
      TEST_FAIL(#x" and "#y" are not equal.");                \
    }                                                         \
  }

#define TEST_NOTEQUAL_FLOAT(x, y, fmt...) {                   \
    TEST_BASE(fmt);                                           \
    double d1 = x;                                            \
    double d2 = y;                                            \
    fprintf(stderr, "Comparing: \"%.64f\" != \"%.64f\"\n", d1, d2); \
    if(d1 != d2) {                                            \
      TEST_OK(#x" and "#y" are not equal.");                  \
    } else {                                                  \
      TEST_FAIL(#x" and "#y" are equal.");                    \
    }                                                         \
  }

#define TEST_GREATER_THAN_INT(x, y, fmt...) {                  \
    TEST_BASE(fmt);                                            \
    int i1 = x;                                                \
    int i2 = y;                                                \
    fprintf(stderr, "Comparing: \"%d\" > \"%d\"\n", i1, i2);   \
    if(i1 > i2) {                                              \
      TEST_OK(#x" are greater than "#y".");                    \
    } else {                                                   \
      TEST_FAIL(#x" are not greater than "#y".");              \
    }                                                          \
  }

#define TEST_LESS_THAN_INT(x, y, fmt...) {                         \
    TEST_BASE(fmt);                                                \
    int i1 = x;                                                    \
    int i2 = y;                                                    \
    fprintf(stderr, "Comparing: \"%d\" < \"%d\"\n", i1, i2);       \
    if(i1 < i2) {                                                  \
      TEST_OK(#x" are less than "#y".");                           \
    } else {                                                       \
      TEST_FAIL(#x" are not less than "#y".");                     \
    }                                                              \
  }

#define TEST_GREATER_THAN_FLOAT(x, y, fmt...) {                 \
    TEST_BASE(fmt);                                             \
    double d1 = x;                                              \
    double d2 = y;                                              \
    fprintf(stderr, "Comparing: \"%.64f\" > \"%.64f\"\n", d1, d2);    \
    if(d1 > d2) {                                               \
      TEST_OK(#x" are greater than "#y".");                     \
    } else {                                                    \
      TEST_FAIL(#x" are not greater than "#y".");               \
    }                                                           \
  }

#define TEST_LESS_THAN_FLOAT(x, y, fmt...) {                       \
    TEST_BASE(fmt);                                                \
    double d1 = x;                                                 \
    double d2 = y;                                                 \
    fprintf(stderr, "Comparing: \"%.64f\" < \"%.64f\"\n", d1, d2);       \
    if(d1 < d2) {                                                  \
      TEST_OK(#x" are less than "#y".");                           \
    } else {                                                       \
      TEST_FAIL(#x" are not less than "#y".");                     \
    }                                                              \
  }

#define TEST_EXCEPTION(x, y, fmt...) {                        \
    TEST_BASE(fmt);                                           \
    try {                                                     \
      x;                                                      \
      TEST_FAIL("Exception "#y" was not trown.");             \
    } catch( y &e ) {                                         \
      TEST_OK("Exception "#y" was thrown as expected.");      \
    }                                                         \
  }

#define TEST_NOTEXCEPTION(x, y, fmt...) {                     \
    TEST_BASE(fmt);                                           \
    try {                                                     \
      x;                                                      \
      TEST_OK("Exception "#y" was not trown as expected");    \
    } catch( y &e ) {                                         \
      TEST_FAIL("Exception "#y" was thrown.");                \
    }                                                         \
  }

#define TEST_NOEXCEPTION(x, fmt...) {                         \
    TEST_BASE(fmt);                                           \
    try {                                                     \
      x;                                                      \
      TEST_OK("Exception was not trown as expected");         \
    } catch( ... ) {                                          \
      TEST_FAIL("Exception was thrown.");                     \
    }                                                         \
  }

#endif/*__PRACRO_TEST_H__*/