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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
/*
* Copyright (c) 2012 Balabit
* Copyright (c) 2012 Balázs Scheidler
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "msg_parse_lib.h"
#include "plugin.h"
void
init_and_load_syslogformat_module()
{
configuration = cfg_new(VERSION_VALUE);
plugin_load_module("syslogformat", configuration, NULL);
msg_format_options_defaults(&parse_options);
msg_format_options_init(&parse_options, configuration);
}
void
deinit_syslogformat_module()
{
if (configuration)
cfg_free(configuration);
configuration = NULL;
}
void
assert_log_message_has_tag(LogMessage *log_message, const gchar *tag_name)
{
assert_true(log_msg_is_tag_by_name(log_message, tag_name), "Expected message to have '%s' tag", tag_name);
}
void
assert_log_message_doesnt_have_tag(LogMessage *log_message, const gchar *tag_name)
{
assert_false(log_msg_is_tag_by_name(log_message, tag_name), "Expected message not to have '%s' tag", tag_name);
}
void
assert_log_message_value(LogMessage *self, NVHandle handle, const gchar *expected_value)
{
gssize key_name_length;
gssize value_length;
const gchar *key_name = log_msg_get_value_name(handle, &key_name_length);
const gchar *actual_value = log_msg_get_value(self, handle, &value_length);
if (expected_value)
assert_string(actual_value, expected_value, "Value is not expected for key %s", key_name);
else
assert_string(actual_value, "", "No value is expected for key %s but its value is %s", key_name, actual_value);
}
void
assert_log_message_value_by_name(LogMessage *self, const gchar *name, const gchar *expected_value)
{
assert_log_message_value(self, log_msg_get_value_handle(name), expected_value);
}
void
assert_log_messages_saddr(LogMessage *log_message_a, LogMessage *log_message_b)
{
gchar address_a[256], address_b[256];
g_sockaddr_format(log_message_a->saddr, address_a, sizeof(address_a), GSA_FULL);
g_sockaddr_format(log_message_b->saddr, address_b, sizeof(address_b), GSA_FULL);
assert_string(address_a, address_b, "Socket address is not expected");
}
void
assert_structured_data_of_messages(LogMessage *log_message_a, LogMessage *log_message_b)
{
GString *structured_data_string_a = g_string_sized_new(0);
GString *structured_data_string_b = g_string_sized_new(0);
log_msg_format_sdata(log_message_a, structured_data_string_a, 0);
log_msg_format_sdata(log_message_b, structured_data_string_b, 0);
assert_string(structured_data_string_a->str, structured_data_string_b->str, "Structure data string are not the same");
g_string_free(structured_data_string_a, TRUE);
g_string_free(structured_data_string_b, TRUE);
}
void
assert_log_message_values_equal(LogMessage *log_message_a, LogMessage *log_message_b, NVHandle handle)
{
gssize key_name_length;
const gchar *key_name = log_msg_get_value_name(handle, &key_name_length);
const gchar *value_a = log_msg_get_value(log_message_a, handle, NULL);
const gchar *value_b = log_msg_get_value(log_message_b, handle, NULL);
assert_string(value_a, value_b, "Value is not expected for key %s", key_name);
}
void
assert_log_messages_equal(LogMessage *log_message_a, LogMessage *log_message_b)
{
assert_gint(log_message_a->timestamps[LM_TS_STAMP].tv_sec, log_message_b->timestamps[LM_TS_STAMP].tv_sec,
"Timestamps are not the same");
assert_guint32(log_message_a->timestamps[LM_TS_STAMP].tv_usec, log_message_b->timestamps[LM_TS_STAMP].tv_usec,
"Timestamps usec are not the same");
assert_guint32(log_message_a->timestamps[LM_TS_STAMP].zone_offset, log_message_b->timestamps[LM_TS_STAMP].zone_offset,
"Timestamp offset are not the same");
assert_guint16(log_message_a->pri, log_message_b->pri, "Priorities are not the same");
assert_log_message_values_equal(log_message_a, log_message_b, LM_V_HOST);
assert_log_message_values_equal(log_message_a, log_message_b, LM_V_PROGRAM);
assert_log_message_values_equal(log_message_a, log_message_b, LM_V_MESSAGE);
assert_log_message_values_equal(log_message_a, log_message_b, LM_V_PID);
assert_log_message_values_equal(log_message_a, log_message_b, LM_V_MSGID);
assert_structured_data_of_messages(log_message_a, log_message_b);
assert_log_messages_saddr(log_message_a, log_message_b);
}
|