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
|
/*
* Copyright (c) 2016 Balabit
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation, or (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; 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 <criterion/criterion.h>
#include <criterion/parameterized.h>
#include "libtest/msg_parse_lib.h"
#include "logmsg/logmsg.h"
#include "serialize.h"
#include "apphook.h"
#include "gsockaddr.h"
#include "logpipe.h"
#include "cfg.h"
#include "plugin.h"
#include <time.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
MsgFormatOptions parse_options;
void
assert_new_log_message_attributes(LogMessage *log_message)
{
assert_log_message_value(log_message, LM_V_HOST, "newhost");
assert_log_message_value(log_message, LM_V_HOST_FROM, "newhost");
assert_log_message_value(log_message, LM_V_MESSAGE, "newmsg");
assert_log_message_value(log_message, LM_V_PROGRAM, "newprogram");
assert_log_message_value(log_message, LM_V_PID, "newpid");
assert_log_message_value(log_message, LM_V_MSGID, "newmsgid");
assert_log_message_value(log_message, LM_V_SOURCE, "newsource");
assert_log_message_value(log_message, log_msg_get_value_handle("newvalue"), "newvalue");
}
void
set_new_log_message_attributes(LogMessage *log_message)
{
log_msg_set_value(log_message, LM_V_HOST, "newhost", -1);
log_msg_set_value(log_message, LM_V_HOST_FROM, "newhost", -1);
log_msg_set_value(log_message, LM_V_MESSAGE, "newmsg", -1);
log_msg_set_value(log_message, LM_V_PROGRAM, "newprogram", -1);
log_msg_set_value(log_message, LM_V_PID, "newpid", -1);
log_msg_set_value(log_message, LM_V_MSGID, "newmsgid", -1);
log_msg_set_value(log_message, LM_V_SOURCE, "newsource", -1);
log_msg_set_value_by_name(log_message, "newvalue", "newvalue", -1);
}
void
setup(void)
{
app_startup();
init_parse_options_and_load_syslogformat(&parse_options);
}
void
teardown(void)
{
deinit_syslogformat_module();
app_shutdown();
}
TestSuite(clone_logmsg, .init = setup, .fini = teardown);
ParameterizedTestParameters(clone_logmsg, test_cloning_with_log_message)
{
const gchar *messages[] =
{
"<7>1 2006-10-29T01:59:59.156+01:00 mymachine.example.com evntslog - ID47 [exampleSDID@0 iut=\"3\" eventSource=\"Application\" eventID=\"1011\"][examplePriority@0 class=\"high\"] BOMAn application event log entry...",
"<132>1 2006-10-29T01:59:59.156+01:00 mymachine evntslog - - [exampleSDID@0 iut=\"3\"] [eventSource=\"Application\" eventID=\"1011\"][examplePriority@0 class=\"high\"] BOMAn application event log entry...",
};
return cr_make_param_array(const gchar *, messages, sizeof(messages) / sizeof(const gchar *));
}
ParameterizedTest(const gchar *msg, clone_logmsg, test_cloning_with_log_message)
{
LogMessage *original_log_message, *log_message, *cloned_log_message;
regex_t bad_hostname;
GSockAddr *addr = g_sockaddr_inet_new("10.10.10.10", 1010);
LogPathOptions path_options = LOG_PATH_OPTIONS_INIT;
parse_options.flags = LP_SYSLOG_PROTOCOL;
parse_options.bad_hostname = &bad_hostname;
original_log_message = msg_format_parse(&parse_options, (const guchar *) msg, strlen(msg));
log_msg_set_saddr(original_log_message, addr);
log_message = msg_format_parse(&parse_options, (const guchar *) msg, strlen(msg));
log_msg_set_saddr(log_message, addr);
log_msg_set_tag_by_name(log_message, "newtag");
path_options.ack_needed = FALSE;
cloned_log_message = log_msg_clone_cow(log_message, &path_options);
assert_log_messages_equal(cloned_log_message, original_log_message);
set_new_log_message_attributes(cloned_log_message);
assert_log_messages_equal(log_message, original_log_message);
assert_new_log_message_attributes(cloned_log_message);
assert_log_message_has_tag(cloned_log_message, "newtag");
g_sockaddr_unref(addr);
log_msg_unref(cloned_log_message);
log_msg_unref(log_message);
log_msg_unref(original_log_message);
}
|