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