aboutsummaryrefslogtreecommitdiff
path: root/src/lib/util/test_common_logging.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/test_common_logging.c')
-rw-r--r--src/lib/util/test_common_logging.c100
1 files changed, 100 insertions, 0 deletions
diff --git a/src/lib/util/test_common_logging.c b/src/lib/util/test_common_logging.c
new file mode 100644
index 000000000..a2e49f20a
--- /dev/null
+++ b/src/lib/util/test_common_logging.c
@@ -0,0 +1,100 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2008 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20
21/**
22 * @file util/test_common_logging.c
23 * @brief testcase for the logging module
24 * @author Christian Grothoff
25 */
26
27#include "platform.h"
28#include "gnunet_util_lib.h"
29
30static void
31my_log (void *ctx, enum GNUNET_ErrorType kind, const char *component,
32 const char *date, const char *msg)
33{
34 unsigned int *c = ctx;
35
36 (*c)++;
37}
38
39
40int
41main (int argc, char *argv[])
42{
43 unsigned int failureCount = 0;
44 unsigned int logs = 0;
45
46 if (0 != putenv ("GNUNET_FORCE_LOG="))
47 fprintf (stderr, "Failed to putenv: %s\n", strerror (errno));
48 GNUNET_log_setup ("test-common-logging", "DEBUG", "/dev/null");
49 GNUNET_logger_add (&my_log, &logs);
50 GNUNET_logger_add (&my_log, &logs);
51 GNUNET_log (GNUNET_ERROR_TYPE_BULK, "Testing...\n");
52 GNUNET_log (GNUNET_ERROR_TYPE_BULK, "Testing...\n");
53 GNUNET_log (GNUNET_ERROR_TYPE_BULK, "Testing...\n");
54 GNUNET_log (GNUNET_ERROR_TYPE_BULK, "Testing...\n");
55 GNUNET_log (GNUNET_ERROR_TYPE_BULK, "Testing...\n");
56 GNUNET_log (GNUNET_ERROR_TYPE_BULK, "Testing...\n");
57 GNUNET_logger_remove (&my_log, &logs);
58 GNUNET_log (GNUNET_ERROR_TYPE_BULK, "Flusher...\n");
59 /* the last 6 calls should be merged (repated bulk messages!) */
60 GNUNET_logger_remove (&my_log, &logs);
61 if (logs != 4)
62 {
63 fprintf (stdout, "Expected 4 log calls, got %u\n", logs);
64 failureCount++;
65 }
66 GNUNET_break (0 ==
67 strcmp (_ ("ERROR"),
68 GNUNET_error_type_to_string (GNUNET_ERROR_TYPE_ERROR)));
69 GNUNET_break (0 ==
70 strcmp (_ ("WARNING"),
71 GNUNET_error_type_to_string
72 (GNUNET_ERROR_TYPE_WARNING)));
73 GNUNET_break (0 ==
74 strcmp (_ ("INFO"),
75 GNUNET_error_type_to_string (GNUNET_ERROR_TYPE_INFO)));
76 GNUNET_break (0 ==
77 strcmp (_ ("DEBUG"),
78 GNUNET_error_type_to_string (GNUNET_ERROR_TYPE_DEBUG)));
79 GNUNET_log_setup ("test_common_logging", "WARNING", "/dev/null");
80 logs = 0;
81 GNUNET_logger_add (&my_log, &logs);
82 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Checker...\n");
83 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Drop me...\n");
84 GNUNET_logger_remove (&my_log, &logs);
85 if (logs != 1)
86 {
87 fprintf (stdout, "Expected 1 log call, got %u\n", logs);
88 failureCount++;
89 }
90
91 if (failureCount != 0)
92 {
93 fprintf (stdout, "%u TESTS FAILED!\n", failureCount);
94 return -1;
95 }
96 return 0;
97} /* end of main */
98
99
100/* end of test_common_logging.c */