123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /*
- * Copyright (c) 2014 Richard Braun.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef TEST_TEST_H
- #define TEST_TEST_H
- #include <stdint.h>
- #include <kern/fmt.h>
- #include <kern/init.h>
- #include <kern/macros.h>
- #include <kern/panic.h>
- // Test exit status.
- #define TEST_OK 0
- #define TEST_SKIPPED 1
- #define TEST_RUNNING 2
- #define TEST_FAILED 3
- void __init test_setup (void);
- /*
- * Tests can be classified in 2 types: inline and deferred.
- * Inline tests are run as they are discovered, whereas deferred tests create a
- * detached thread that runs once the needed subsystems are up.
- * In order for tests to be inline, they must only use the most basic of the
- * functionalities that the kernel provides, since test discovery is run very
- * early (Before application processors are up).
- */
- #define TEST_PREFIX test_F
- #define TEST_INLINE_CHAR I
- // Convert 'name' to 'test_FI_name'.
- #define TEST_INLINE(name) \
- int __init CONCAT (TEST_PREFIX, \
- CONCAT (TEST_INLINE_CHAR, CONCAT (_, name))) (void)
- // Convert 'name' to 'test_F_name'.
- #define TEST_DEFERRED(name) \
- int __init CONCAT (TEST_PREFIX, CONCAT (_, name)) (void)
- // Utilities for the test module.
- struct thread;
- int test_util_create_thr (struct thread **out, void (*fn) (void *),
- void *arg, const char *name);
- void test_thread_wait_state (struct thread *thr, uint32_t state);
- // Test assertions.
- #define test_fmt_get_spec(x) \
- _Generic ((x), \
- bool: "%d", \
- char: "%c", \
- unsigned char: "%d", \
- short: "%d", \
- unsigned short: "%d", \
- int: "%d", \
- unsigned int: "%u", \
- long: "%ld", \
- unsigned long: "%lu", \
- long long: "%lld", \
- unsigned long long: "%llu", \
- const char*: "%s", \
- default: "%p")
- #define test_fmt_any(x, out) \
- (fmt_sprintf ((out), test_fmt_get_spec (x), (x)), (out))
- #define test_assert_op(x, y, op) \
- ({ \
- _Auto left_ = (x); \
- typeof (left_) right_ = (typeof (left_))(y); \
- if (!(left_ op right_)) \
- { \
- char buf1_[22], buf2_[22]; \
- panic ("assertion failed: %s %s %s at %s:%d", \
- test_fmt_any (left_, buf1_), \
- QUOTE (op), \
- test_fmt_any (right_, buf2_), \
- __FILE__, __LINE__); \
- } \
- })
- #define test_assert_eq(x, y) test_assert_op (x, y, ==)
- #define test_assert_lt(x, y) test_assert_op (x, y, <)
- #define test_assert_le(x, y) test_assert_op (x, y, <=)
- #define test_assert_gt(x, y) test_assert_op (x, y, >)
- #define test_assert_ge(x, y) test_assert_op (x, y, >=)
- #define test_assert_ne(x, y) test_assert_op (x, y, !=)
- #define test_assert_zero(x) test_assert_eq ((x), (typeof (x))0)
- #define test_assert_nonnull(x) \
- ({ \
- _Auto tmp_ = (x); \
- if (! tmp_) \
- panic ("assertion failed at %s:%d: " QUOTE (x) " is null", \
- __FILE__, __LINE__); \
- }) \
- #define test_assert_streq(x, y) \
- ({ \
- const char *x_ = (const char *)(x), *y_ = (const char *)(y); \
- if (strcmp (x_, y_) != 0) \
- panic ("assertion failed: %s is not equal to %s at %s:%d", \
- x_, y_, __FILE__, __LINE__); \
- }) \
- #define test_assert_or(cond1, ...) \
- ({ \
- const bool conds_[] = { (cond1), ##__VA_ARGS__ }; \
- bool works_ = false; \
- for (size_t i_ = 0; i_ < ARRAY_SIZE (conds_) && !works_; ++i_) \
- works_ = conds_[i_]; \
- if (!works_) \
- panic ("assertion failed at %s:%d", __FILE__, __LINE__); \
- })
- #endif
|