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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/*
This file is part of GNUnet.
Copyright (C) 2008 GNUnet e.V.
GNUnet 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.
GNUnet 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
Affero General Public License for more details.
*/
/**
* @file util/test_common_logging.c
* @brief testcase for the logging module
* @author Christian Grothoff
*/
#include "platform.h"
#include "gnunet_util_lib.h"
static void
my_log (void *ctx, enum GNUNET_ErrorType kind, const char *component,
const char *date, const char *msg)
{
unsigned int *c = ctx;
(*c)++;
}
int
main (int argc, char *argv[])
{
unsigned int failureCount = 0;
unsigned int logs = 0;
if (0 != putenv ("GNUNET_FORCE_LOG="))
FPRINTF (stderr, "Failed to putenv: %s\n", strerror (errno));
GNUNET_log_setup ("test-common-logging", "DEBUG", "/dev/null");
GNUNET_logger_add (&my_log, &logs);
GNUNET_logger_add (&my_log, &logs);
GNUNET_log (GNUNET_ERROR_TYPE_BULK, "Testing...\n");
GNUNET_log (GNUNET_ERROR_TYPE_BULK, "Testing...\n");
GNUNET_log (GNUNET_ERROR_TYPE_BULK, "Testing...\n");
GNUNET_log (GNUNET_ERROR_TYPE_BULK, "Testing...\n");
GNUNET_log (GNUNET_ERROR_TYPE_BULK, "Testing...\n");
GNUNET_log (GNUNET_ERROR_TYPE_BULK, "Testing...\n");
GNUNET_logger_remove (&my_log, &logs);
GNUNET_log (GNUNET_ERROR_TYPE_BULK, "Flusher...\n");
/* the last 6 calls should be merged (repated bulk messages!) */
GNUNET_logger_remove (&my_log, &logs);
if (logs != 4)
{
FPRINTF (stdout, "Expected 4 log calls, got %u\n", logs);
failureCount++;
}
GNUNET_break (0 ==
strcmp (_("ERROR"),
GNUNET_error_type_to_string (GNUNET_ERROR_TYPE_ERROR)));
GNUNET_break (0 ==
strcmp (_("WARNING"),
GNUNET_error_type_to_string
(GNUNET_ERROR_TYPE_WARNING)));
GNUNET_break (0 ==
strcmp (_("INFO"),
GNUNET_error_type_to_string (GNUNET_ERROR_TYPE_INFO)));
GNUNET_break (0 ==
strcmp (_("DEBUG"),
GNUNET_error_type_to_string (GNUNET_ERROR_TYPE_DEBUG)));
GNUNET_log_setup ("test_common_logging", "WARNING", "/dev/null");
logs = 0;
GNUNET_logger_add (&my_log, &logs);
GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Checker...\n");
GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Drop me...\n");
GNUNET_logger_remove (&my_log, &logs);
if (logs != 1)
{
FPRINTF (stdout, "Expected 1 log call, got %u\n", logs);
failureCount++;
}
if (failureCount != 0)
{
FPRINTF (stdout, "%u TESTS FAILED!\n", failureCount);
return -1;
}
return 0;
} /* end of main */
/* end of test_common_logging.c */
|