e454b6934494566ae3b7580fdfd837e2aaf9532c
[collectd.git] / src / tests / macros.h
1 /**
2  * collectd - src/tests/macros.h
3  *
4  * Copyright (C) 2013       Florian octo Forster
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  *
24  * Authors:
25  *   Florian octo Forster <octo at collectd.org>
26  */
27
28 static int fail_count__ = 0;
29 static int check_count__ = 0;
30
31 #define DEF_TEST(func) static int test_##func ()
32
33 #define RUN_TEST(func) do { \
34   int status; \
35   printf ("Testing %s ...\n", #func); \
36   status = test_ ## func (); \
37   printf ("%s.\n", (status == 0) ? "Success" : "FAILURE"); \
38   if (status != 0) { fail_count__++; } \
39 } while (0)
40
41 #define END_TEST exit ((fail_count__ == 0) ? 0 : 1);
42
43 #define OK1(cond, text) do { \
44   _Bool result = (cond); \
45   printf ("%s %i - %s\n", result ? "ok" : "not ok", ++check_count__, text); \
46 } while (0)
47 #define OK(cond) OK1(cond, #cond)
48
49 #define STREQ(expect, actual) do { \
50   if (strcmp (expect, actual) != 0) { \
51     printf ("not ok %i - %s incorrect: expected \"%s\", got \"%s\"\n", \
52         ++check_count__, #actual, expect, actual); \
53     return (-1); \
54   } \
55   printf ("ok %i - %s evaluates to \"%s\"\n", ++check_count__, #actual, expect); \
56 } while (0)
57
58 #define CHECK_NOT_NULL(expr) do { \
59   void *ptr_; \
60   ptr_ = (expr); \
61   OK1(ptr_ != NULL, #expr); \
62 } while (0)
63
64 #define CHECK_ZERO(expr) do { \
65   long status_; \
66   status_ = (long) (expr); \
67   OK1(status_ == 0L, #expr); \
68 } while (0)