utest_assert.h 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright (c) 2006-2018, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2018-11-19 MurphyZhao the first version
  9. */
  10. #ifndef __UTEST_ASSERT_H__
  11. #define __UTEST_ASSERT_H__
  12. #include "utest.h"
  13. #include <rtthread.h>
  14. /* No need for the user to use this function directly */
  15. void utest_assert(int value, const char *file, int line, const char *func, const char *msg);
  16. /* No need for the user to use this function directly */
  17. void utest_assert_string(const char *a, const char *b, rt_bool_t equal, const char *file, int line, const char *func, const char *msg);
  18. void utest_assert_buf(const char *a, const char *b, rt_size_t sz, rt_bool_t equal, const char *file, int line, const char *func, const char *msg);
  19. /* No need for the user to use this macro directly */
  20. #define __utest_assert(value, msg) utest_assert(value, __FILE__, __LINE__, __func__, msg)
  21. /**
  22. * uassert_x macros
  23. *
  24. * @brief Get the utest data structure handle.
  25. * No need for the user to call this function directly.
  26. *
  27. * @macro uassert_true if @value is true, not assert, means passing.
  28. * @macro uassert_false if @value is false, not assert, means passing.
  29. * @macro uassert_null if @value is null, not assert, means passing.
  30. * @macro uassert_not_null if @value is not null, not assert, means passing.
  31. * @macro uassert_int_equal if @a equal to @b, not assert, means passing. Integer type test.
  32. * @macro uassert_int_not_equal if @a not equal to @b, not assert, means passing. Integer type test.
  33. * @macro uassert_str_equal if @a equal to @b, not assert, means passing. String type test.
  34. * @macro uassert_str_not_equal if @a not equal to @b, not assert, means passing. String type test.
  35. * @macro uassert_buf_equal if @a equal to @b, not assert, means passing. buf type test.
  36. * @macro uassert_buf_not_equal if @a not equal to @b, not assert, means passing. buf type test.
  37. * @macro uassert_in_range if @value is in range of min and max, not assert, means passing.
  38. * @macro uassert_not_in_range if @value is not in range of min and max, not assert, means passing.
  39. *
  40. */
  41. #define uassert_true(value) __utest_assert(value, "(" #value ") is false")
  42. #define uassert_false(value) __utest_assert(!(value), "(" #value ") is true")
  43. #define uassert_null(value) __utest_assert((const char *)(value) == NULL, "(" #value ") is not null")
  44. #define uassert_not_null(value) __utest_assert((const char *)(value) != NULL, "(" #value ") is null")
  45. #define uassert_int_equal(a, b) __utest_assert((a) == (b), "(" #a ") not equal to (" #b ")")
  46. #define uassert_int_not_equal(a, b) __utest_assert((a) != (b), "(" #a ") equal to (" #b ")")
  47. #define uassert_str_equal(a, b) utest_assert_string((const char*)(a), (const char*)(b), RT_TRUE, __FILE__, __LINE__, __func__, "string not equal")
  48. #define uassert_str_not_equal(a, b) utest_assert_string((const char*)(a), (const char*)(b), RT_FALSE, __FILE__, __LINE__, __func__, "string equal")
  49. #define uassert_buf_equal(a, b, sz) utest_assert_buf((const char*)(a), (const char*)(b), (sz), RT_TRUE, __FILE__, __LINE__, __func__, "buf not equal")
  50. #define uassert_buf_not_equal(a, b, sz) utest_assert_buf((const char*)(a), (const char*)(b), (sz), RT_FALSE, __FILE__, __LINE__, __func__, "buf equal")
  51. #define uassert_in_range(value, min, max) __utest_assert(((value >= min) && (value <= max)), "(" #value ") not in range("#min","#max")")
  52. #define uassert_not_in_range(value, min, max) __utest_assert(!((value >= min) && (value <= max)), "(" #value ") in range("#min","#max")")
  53. #endif /* __UTEST_ASSERT_H__ */