diff options
Diffstat (limited to 'src/test/logging')
-rw-r--r-- | src/test/logging/logging_tests.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/logging/logging_tests.c b/src/test/logging/logging_tests.c index 2a07d30..ee00d8e 100644 --- a/src/test/logging/logging_tests.c +++ b/src/test/logging/logging_tests.c @@ -1,3 +1,6 @@ +#include <stdio.h> +#include <stdlib.h> + #include "test/minunit.h" #include "test/suites.h" @@ -7,6 +10,7 @@ /* test declarations */ mu_test test_log_get_level(); +mu_test test_log_debug(); /* main suite */ @@ -14,6 +18,7 @@ mu_test test_log_get_level(); void honey_logging_tests() { mu_run_test("get log level strings", test_log_get_level); + mu_run_test("print debug message", test_log_debug); } @@ -40,3 +45,24 @@ mu_test test_log_get_level() return 0; } + + +mu_test test_log_debug() +{ + FILE *stream; + char *buffer; + size_t len; + + stream = open_memstream(&buffer, &len); + mu_assert_unequal(stream, NULL); + + struct honey_log_info info; + info.debug_out = stream; + + honey_debug_(info, "hello, world!"); + fclose(stream); + mu_assert_streq(buffer, "[DEBUG] hello, world!"); + free(buffer); + + return 0; +} |