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
|
/*
* Copyright (c) 2002-2016 Balabit
* Copyright (c) 2016 Viktor Juhasz <viktor.juhasz@balabit.com>
*
* 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 "libtest/queue_utils_lib.h"
#include "test_diskq_tools.h"
#include "messages.h"
#include "logqueue-disk.h"
#include "logqueue-disk-reliable.h"
#include "logqueue-disk-non-reliable.h"
#include "apphook.h"
#include "plugin.h"
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define DISKQ_FILENAME_NOT_RELIABLE "test_become_full_not_reliable.qf"
#define DISKQ_FILENAME_RELIABLE "test_become_full_reliable.qf"
static void msg_post_function(LogMessage *msg)
{
log_msg_unref(msg);
}
void
test_diskq_become_full(gboolean reliable, const gchar *filename)
{
LogQueue *q;
acked_messages = 0;
fed_messages = 0;
DiskQueueOptions options = {0};
const gchar *persist_name = "test_diskq";
StatsClusterKeyBuilder *driver_sck_builder = stats_cluster_key_builder_new();
StatsClusterKeyBuilder *queue_sck_builder = stats_cluster_key_builder_new();
options.reliable = reliable;
if (reliable)
{
_construct_options(&options, 1000, 1000, reliable);
q = log_queue_disk_reliable_new(&options, filename, persist_name, STATS_LEVEL0, driver_sck_builder,
queue_sck_builder);
}
else
{
_construct_options(&options, 1000, 0, reliable);
q = log_queue_disk_non_reliable_new(&options, filename, persist_name, STATS_LEVEL0, driver_sck_builder,
queue_sck_builder);
}
stats_cluster_key_builder_free(driver_sck_builder);
stats_cluster_key_builder_free(queue_sck_builder);
unlink(filename);
log_queue_disk_start(q);
feed_some_messages(q, 1000);
cr_assert_eq(atomic_gssize_racy_get(&q->metrics.shared.dropped_messages->value), 1000,
"Bad dropped message number (reliable: %s)",
reliable ? "TRUE" : "FALSE");
gboolean persistent;
log_queue_disk_stop(q, &persistent);
log_queue_unref(q);
disk_queue_options_destroy(&options);
unlink(filename);
}
Test(diskq_full, diskq_become_full_reliable)
{
test_diskq_become_full(TRUE, DISKQ_FILENAME_RELIABLE);
}
Test(diskq_full, diskq_become_full_non_reliable)
{
test_diskq_become_full(FALSE, DISKQ_FILENAME_NOT_RELIABLE);
}
static void
setup(void)
{
app_startup();
setenv("TZ", "MET-1METDST", TRUE);
tzset();
configuration = cfg_new_snippet();
cfg_load_module(configuration, "disk-buffer");
msg_set_post_func(msg_post_function);
}
static void
teardown(void)
{
cfg_free(configuration);
app_shutdown();
}
TestSuite(diskq_full, .init = setup, .fini = teardown);
|