File: test.h

package info (click to toggle)
cif-api 0.4.2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,472 kB
  • sloc: ansic: 19,411; lex: 246; makefile: 201; sql: 164; yacc: 115; sh: 37
file content (255 lines) | stat: -rw-r--r-- 8,404 bytes parent folder | download | duplicates (3)
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
/*
 * test.h
 *
 * Macros for CIF test fixture setup and teardown.
 *
 * Copyright 2014, 2015 John C. Bollinger
 *
 *
 * This file is part of the CIF API.
 *
 * The CIF API is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * The CIF API 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with the CIF API.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef TESTS_TEST_H
#define TESTS_TEST_H

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <stdlib.h>
#include <stdio.h>

#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif

#include <unicode/ustring.h>
#include <unicode/ustdio.h>
#include <sqlite3.h>
#include "uthash.h"
#include "../cif.h"

#ifdef __GNUC__
#define UNUSED   __attribute__ ((__unused__))
#else
#define UNUSED
#endif

/*
 * The name of the directory containing the test files it is evaluated relative to the working directory unless the
 * environment variable CIFAPI_SRC is set, in which case it is evaluated relative to the directory named by that
 * environment variable
 */
#define DATA_DIR "test-data"

/*
 * Standardized result codes.  Any other return code represents a normal failure.
 */
#define SUCCESS    0
#define SKIP      77
#define HARD_FAIL 99

#define DEFAULT_ULPS 2

struct set_el {
    UT_hash_handle hh;
};

#define INIT_USTDERR do { if (ustderr == NULL) ustderr = u_finit(stderr, NULL, NULL); } while (0)

#define TESTHEADER(name) do { \
  fprintf(stderr, "\n-- %s --\n", (name)); \
} while (0)

/*
 * Emits a failure message to stderr and returns a failure code.
 */
#define FAIL(ret, name, code, sense, compare) do { \
  int _ret = (ret); \
  fprintf(stderr, "%s(%d): ... failed with code %d " sense " %d at line %d in " __FILE__ ".\n", \
          (name), _ret, (code), (compare), __LINE__); \
  return 1; \
} while (0)

/*
 * Evaluates (expr) and compares the result to (expect).  If they differ then a test failure is triggered
 * with failure code (fail_code).  In the event of failure, a message emitted to stderr will identify the
 * failing test as (name).
 */
#define TEST(expr, expect, name, fail_code) do { \
  int _result = (expr); \
  int _expect = (expect); \
  int _code = (fail_code); \
  if (_result != _expect) FAIL(_code, (name), _result, "!=", _expect); \
  fprintf(stderr, "  subtest %d passed\n", _code); \
} while (0)

/*
 * Like TEST, but with the sense of the success/failure criterion reversed.
 */
#define TEST_NOT(expr, expect_not, name, fail_code) do { \
  int _result = (expr); \
  int _expect_not = (expect_not); \
  int _code = (fail_code); \
  if (_result == _expect_not) FAIL((fail_code),(name),_result,"==",_expect_not); \
  fprintf(stderr, "  subtest %d passed\n", _code); \
} while (0)

#define TO_UNICODE(s, buffer, buf_len) ( \
    u_unescape((s), buffer, buf_len), \
    buffer \
)

/*
 * Creates a new managed cif, recording a handle on it in cif, which must therefore be an lvalue.
 * Generates a hard failure if unsuccessful.
 */
#define CREATE_CIF(n, cif) do { \
    const char *_test_name = (n); \
    int _result; \
    fprintf(stderr, "%s: Creating a managed CIF...\n", _test_name); \
    _result = cif_create(&cif); \
    if (_result != CIF_OK) { \
        fprintf(stderr, "error: %s: ... failed with code %d.\n", _test_name, _result); \
        return HARD_FAIL; \
    } else if (cif == NULL) { \
        fprintf(stderr, "error: %s: ... did not set the CIF pointer.\n", _test_name); \
        return HARD_FAIL; \
    } \
} while (0)

/*
 * Destroys the specified managed cif, or emits a warning if it fails to do so
 */
#define DESTROY_CIF(n, cif) do { \
    const char *_test_name = (n); \
    int _result; \
    fprintf(stderr, "%s: Destroying a managed CIF...\n", _test_name); \
    _result = cif_destroy(cif); \
    if (_result != CIF_OK) { \
        fprintf(stderr, "warning: %s: ... failed with code %d.\n", _test_name, _result); \
    } \
} while (0)

/*
 * Creates a new data block bearing the specified code in the specified cif, recording a handle on it
 * in 'block', which must therefore be an lvalue.  Generates a hard failure if unsuccessful.
 */
#define CREATE_BLOCK(n, cif, code, block) do { \
    const char *_test_name = (n); \
    int _result; \
    const UChar *_code = (code); \
    fprintf(stderr, "%s: Creating a managed data block...\n", _test_name); \
    _result = cif_create_block((cif), _code, &block); \
    if (_result != CIF_OK) { \
        fprintf(stderr, "error: %s: ... failed with code %d.\n", _test_name, _result); \
        return HARD_FAIL; \
    } else if (block == NULL) { \
        fprintf(stderr, "error: %s: ... did not set the block pointer.\n", _test_name); \
        return HARD_FAIL; \
    } \
} while (0)

/*
 * Destroys the specified managed data block, or emits a warning if it fails to do so
 */
#define DESTROY_BLOCK(n, block) do { \
    const char *_test_name = (n); \
    int _result; \
    fprintf(stderr, "%s: Destroying a managed data block...\n", _test_name); \
    _result = cif_container_destroy(block); \
    if (_result != CIF_OK) { \
        fprintf(stderr, "warning: %s: ... failed with code %d.\n", _test_name, _result); \
    } \
} while (0)

/*
 * Creates a new save frame bearing the specified code in the specified block, recording a handle on it
 * in 'frame', which must therefore be an lvalue.  Generates a hard failure if unsuccessful.
 */
#define CREATE_FRAME(n, block, code, frame) do { \
    const char *_test_name = (n); \
    int _result; \
    const UChar *_code = (code); \
    fprintf(stderr, "%s: Creating a managed save frame...\n", _test_name); \
    _result = cif_block_create_frame((block), _code, &frame); \
    if (_result != CIF_OK) { \
        fprintf(stderr, "error: %s: ... failed with code %d.\n", _test_name, _result); \
        return HARD_FAIL; \
    } else if (frame == NULL) { \
        fprintf(stderr, "error: %s: ... did not set the frame pointer.\n", _test_name); \
        return HARD_FAIL; \
    } \
} while (0)

/*
 * Destroys the specified managed save frame, or emits a warning if it fails to do so
 */
#define DESTROY_FRAME(n, frame) do { \
    const char *_test_name = (n); \
    int _result; \
    fprintf(stderr, "%s: Destroying a managed save frame...\n", _test_name); \
    _result = cif_container_destroy(frame); \
    if (_result != CIF_OK) { \
        fprintf(stderr, "warning: %s: ... failed with code %d.\n", _test_name, _result); \
    } \
} while (0)

/*
 * Records a path to the test data directory.  Despite the term "resolve" in the macro name, this may still be a
 * relative path.  'dest' is a pointer to a char buffer into which the result should be written, and 'len' is the space
 * available in the buffer.  len must be greater than zero, else the behavior of this macro is undefined.  All the
 * storage from dest[0] to dest[len - 1] must belong to the same object, else the behavior of this macro is undefined.
 * There must be sufficient space for the full resolution, else an empty string is recorded.
 */
#define RESOLVE_DATADIR(dest, len) do { \
    const char *_cifapi_src = getenv("CIFAPI_SRC"); \
    char *_d = (dest); \
    ssize_t _l = (len); \
    if (!_cifapi_src) { _cifapi_src = "."; } \
    if (strlen(_cifapi_src) >= (_l - (strlen(DATA_DIR) + 2))) { _d[0] = 0; } \
    else { sprintf(_d, "%s/" DATA_DIR "/", _cifapi_src); } \
} while (0)

#ifdef _WIN32

/*
 * Win32's tmpfile() is not usable (it tries to create files in the root directory, which is often not writable).
 * We therefore provide an alternative that is a little nicer.  Note that it uses _tempnam(), which is not particularly
 * secure, but it is intended to be used only in the automated tests.
 */
#define tmpfile cif_win32_tmpfile

FILE *cif_win32_tmpfile(void);

FILE *cif_win32_tmpfile(void) {
    char *filename = _tempnam(NULL, "cifapi_test");
    FILE *file = fopen(filename,
#ifdef TEXT_TEMPFILE
            "w+tTD"
#else
            "w+bTD"
#endif
    );

    free(filename);
    return file;
}

#endif

#endif