summaryrefslogtreecommitdiff
path: root/src/test/logging/logging_tests.c
blob: ee00d8ef863b010ed2e7ec033b17317691b95144 (plain)
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
#include <stdio.h>
#include <stdlib.h>

#include "test/minunit.h"
#include "test/suites.h"

#include "logging/logging.h"


/* test declarations */

mu_test test_log_get_level();
mu_test test_log_debug();


/* main suite */

void honey_logging_tests()
{
   mu_run_test("get log level strings", test_log_get_level);
   mu_run_test("print debug message", test_log_debug);
}


/* test definitions */

mu_test test_log_get_level()
{
   struct honey_log_info info;

   info.log_level = DEBUG;
   mu_assert_streq("DEBUG", honey_log_level_str_(&info));

   info.log_level = INFO;
   mu_assert_streq("INFO", honey_log_level_str_(&info));

   info.log_level = WARN;
   mu_assert_streq("WARN", honey_log_level_str_(&info));

   info.log_level = ERROR;
   mu_assert_streq("ERROR", honey_log_level_str_(&info));

   info.log_level = FATAL;
   mu_assert_streq("FATAL", honey_log_level_str_(&info));

   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;
}