Added a way to get the verbosity to test programs
[yaz-moved-to-github.git] / include / yaz / test.h
1 /*
2  * Copyright (C) 1995-2006, Index Data ApS
3  * See the file LICENSE for details.
4  *
5  * $Id: test.h,v 1.6 2006-05-10 12:52:17 heikki Exp $
6  */
7
8 /** \file test.h
9     \brief Unit Test for YAZ
10 */
11
12 #ifndef YAZ_TEST_H
13 #define YAZ_TEST_H
14
15 #include <yaz/yconfig.h>
16 #include <stdio.h>
17
18 /** \brief Get the verbosity level */
19 int yaz_test_get_verbosity();
20
21 /** \brief Test OK */
22 #define YAZ_TEST_TYPE_OK 1
23 /** \brief Test failed */
24 #define YAZ_TEST_TYPE_FAIL 2
25
26 /** \brief boolean test. as only evaluated once */
27 #define YAZ_CHECK(as) { \
28   if (as) { \
29     yaz_check_print1(YAZ_TEST_TYPE_OK, __FILE__, __LINE__, #as); \
30   } else { \
31     yaz_check_print1(YAZ_TEST_TYPE_FAIL, __FILE__, __LINE__, #as); \
32   } \
33 }
34
35 /** \brief equality test. left, right only evaluated once */
36 #define YAZ_CHECK_EQ(left, right) { \
37   int lval = left; \
38   int rval = right; \
39   if (lval == rval) { \
40     yaz_check_eq1(YAZ_TEST_TYPE_OK, __FILE__, __LINE__, \
41      #left, #right, lval, rval); \
42   } else { \
43     yaz_check_eq1(YAZ_TEST_TYPE_FAIL, __FILE__, __LINE__, \
44      #left, #right, lval, rval); \
45   } \
46 }
47
48 /** \brief Macro to initialize the system (in start of main typically) */
49 #define YAZ_CHECK_INIT(argc, argv) yaz_check_init1(&argc, &argv)
50 /** \brief Macro to terminate the system (end of main, normally) */
51 #define YAZ_CHECK_TERM yaz_check_term1(); return 0
52
53
54 YAZ_BEGIN_CDECL
55 /** \brief used by macro. Should not be called directly */
56 YAZ_EXPORT void yaz_check_init1(int *argc, char ***argv);
57 /** \brief used by macro. Should not be called directly */
58 YAZ_EXPORT void yaz_check_term1(void);
59 /** \brief used by macro. Should not be called directly */
60 YAZ_EXPORT void yaz_check_print1(int type, const char *file, int line,
61                                  const char *expr);
62 /** \brief used by macro. Should not be called directly */
63 YAZ_EXPORT void yaz_check_eq1(int type, const char *file, int line,
64                               const char *left, const char *right,
65                               int lval, int rval);
66 YAZ_END_CDECL
67
68 #endif
69 /*
70  * Local variables:
71  * c-basic-offset: 4
72  * indent-tabs-mode: nil
73  * End:
74  * vim: shiftwidth=4 tabstop=8 expandtab
75  */
76