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
|
/*
* TSM - Test Helper
*
* Copyright (c) 2012-2013 David Herrmann <dh.herrmann@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/*
* Test Helper
* This header includes all kinds of helpers for testing. It tries to include
* everything required and provides simple macros to avoid duplicating code in
* each test. We try to keep tests as small as possible and move everything that
* might be common here.
*
* We avoid sticking to our usual coding conventions (including headers in
* source files, etc. ..) and instead make this the most convenient we can.
*/
#ifndef TEST_COMMON_H
#define TEST_COMMON_H
#include <check.h>
#include <errno.h>
#include <inttypes.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdlib.h>
/* lower address-space is protected from user-allocation, so this is invalid */
#define TEST_INVALID_PTR ((void*)0x10)
#define UNUSED(x) (void)(x)
#define TEST_DEFINE_CASE(_name) \
static TCase *test_create_case_##_name(void) \
{ \
TCase *tc; \
\
tc = tcase_create(#_name); \
#define TEST(_name) tcase_add_test(tc, _name);
#define TEST_END_CASE \
return tc; \
} \
#define TEST_END NULL
#define TEST_CASE(_name) test_create_case_##_name
static inline Suite *test_create_suite(const char *name, ...)
{
Suite *s;
va_list list;
TCase *(*fn)(void);
s = suite_create(name);
va_start(list, name);
while ((fn = va_arg(list, TCase *(*)(void))))
suite_add_tcase(s, fn());
va_end(list);
return s;
}
#define TEST_SUITE(_name, ...) test_create_suite((#_name), ##__VA_ARGS__)
static inline int test_run_suite(Suite *s)
{
int ret;
SRunner *sr;
sr = srunner_create(s);
srunner_run_all(sr, CK_NORMAL);
ret = srunner_ntests_failed(sr);
srunner_free(sr);
return ret;
}
#define TEST_DEFINE(_suite) \
int main(int argc, char **argv) \
{ \
return test_run_suite(_suite); \
}
#endif /* TEST_COMMON_H */
|