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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
|
/*
* Copyright (c) 2013 Balabit
* Copyright (c) 2013 Balázs Scheidler <bazsi@balabit.hu>
*
* 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 <criterion/criterion.h>
#include "stats/stats-cluster.h"
#include "stats/stats-cluster-single.h"
#include "apphook.h"
guint SCS_FILE;
static void
setup(void)
{
app_startup();
SCS_FILE = stats_register_type("file");
}
Test(stats_cluster, test_stats_cluster_single)
{
StatsCluster *sc;
StatsClusterKey sc_key;
stats_cluster_single_key_legacy_set(&sc_key, SCS_GLOBAL, "logmsg_allocated_bytes", NULL);
sc = stats_cluster_new(&sc_key);
cr_assert_str_eq(sc->query_key, "global.logmsg_allocated_bytes", "Unexpected query key");
cr_assert_eq(sc->counter_group.capacity, 1, "Invalid group capacity");
stats_cluster_free(sc);
}
Test(stats_cluster, test_stats_cluster_single_with_name_with_heap_allocated_string)
{
const gchar *string_literal_name = "test_name";
StatsCluster *sc;
StatsClusterKey sc_key;
GString *heap_allocated_name = g_string_new(string_literal_name);
stats_cluster_single_key_legacy_set_with_name(&sc_key, SCS_GLOBAL, "id", "instance", heap_allocated_name->str);
sc = stats_cluster_new(&sc_key);
g_string_truncate(heap_allocated_name, 0);
g_string_free(heap_allocated_name, TRUE);
cr_assert_str_eq(sc->counter_group.counter_names[0], string_literal_name,
"Unexpected counter name: %s", sc->counter_group.counter_names[0]);
stats_cluster_free(sc);
}
Test(stats_cluster, test_stats_cluster_new_replaces_NULL_with_an_empty_string)
{
StatsCluster *sc;
StatsClusterKey sc_key;
stats_cluster_logpipe_key_legacy_set(&sc_key, SCS_SOURCE | SCS_FILE, NULL, NULL );
sc = stats_cluster_new(&sc_key);
cr_assert_str_eq(sc->key.legacy.id, "", "StatsCluster->id is not properly defaulted to an empty string");
cr_assert_str_eq(sc->key.legacy.instance, "", "StatsCluster->instance is not properly defaulted to an empty string");
stats_cluster_free(sc);
}
static void
assert_stats_cluster_equals(StatsCluster *sc1, StatsCluster *sc2)
{
cr_assert(stats_cluster_key_equal(&sc1->key, &sc2->key), "unexpected unequal StatsClusters");
}
static void
assert_stats_cluster_mismatches(StatsCluster *sc1, StatsCluster *sc2)
{
cr_assert_not(stats_cluster_key_equal(&sc1->key, &sc2->key), "unexpected equal StatsClusters");
}
static void
assert_stats_cluster_equals_and_free(StatsCluster *sc1, StatsCluster *sc2)
{
assert_stats_cluster_equals(sc1, sc2);
stats_cluster_free(sc1);
stats_cluster_free(sc2);
}
static void
assert_stats_cluster_mismatches_and_free(StatsCluster *sc1, StatsCluster *sc2)
{
assert_stats_cluster_mismatches(sc1, sc2);
stats_cluster_free(sc1);
stats_cluster_free(sc2);
}
Test(stats_cluster, test_stats_cluster_equal_if_component_id_and_instance_are_the_same)
{
StatsClusterKey sc_key;
stats_cluster_logpipe_key_legacy_set(&sc_key, SCS_SOURCE | SCS_FILE, "id", "instance" );
assert_stats_cluster_equals_and_free(stats_cluster_new(&sc_key),
stats_cluster_new(&sc_key));
stats_cluster_logpipe_key_legacy_set(&sc_key, SCS_SOURCE | SCS_FILE, "id", "instance1" );
StatsClusterKey sc_key2;
stats_cluster_logpipe_key_legacy_set(&sc_key2, SCS_SOURCE | SCS_FILE, "id", "instance2" );
assert_stats_cluster_mismatches_and_free(stats_cluster_new(&sc_key),
stats_cluster_new(&sc_key2));
stats_cluster_logpipe_key_legacy_set(&sc_key, SCS_SOURCE | SCS_FILE, "id1", "instance" );
stats_cluster_logpipe_key_legacy_set(&sc_key2, SCS_SOURCE | SCS_FILE, "id2", "instance" );
assert_stats_cluster_mismatches_and_free(stats_cluster_new(&sc_key),
stats_cluster_new(&sc_key2));
stats_cluster_logpipe_key_legacy_set(&sc_key, SCS_SOURCE | SCS_FILE, "id", "instance" );
stats_cluster_logpipe_key_legacy_set(&sc_key2, SCS_DESTINATION | SCS_FILE, "id", "instance" );
assert_stats_cluster_mismatches_and_free(stats_cluster_new(&sc_key),
stats_cluster_new(&sc_key2));
}
Test(stats_cluster, test_stats_cluster_key_not_equal_when_custom_tags_are_different)
{
StatsClusterKey sc_key1;
StatsClusterKey sc_key2;
stats_cluster_single_key_legacy_set_with_name(&sc_key1, SCS_SOURCE | SCS_FILE, "id", "instance", "name1");
stats_cluster_single_key_legacy_set_with_name(&sc_key2, SCS_SOURCE | SCS_FILE, "id", "instance", "name2");
StatsCluster *sc1 = stats_cluster_new(&sc_key1);
StatsCluster *sc2 = stats_cluster_new(&sc_key2);
cr_assert_not(stats_cluster_key_equal(&sc_key1, &sc_key2), "%s", __FUNCTION__);
stats_cluster_free(sc1);
stats_cluster_free(sc2);
}
Test(stats_cluster, test_stats_cluster_key_equal_when_custom_tags_are_the_same)
{
StatsClusterKey sc_key1;
StatsClusterKey sc_key2;
stats_cluster_single_key_legacy_set_with_name(&sc_key1, SCS_SOURCE | SCS_FILE, "id", "instance", "name");
stats_cluster_single_key_legacy_set_with_name(&sc_key2, SCS_SOURCE | SCS_FILE, "id", "instance", "name");
StatsCluster *sc1 = stats_cluster_new(&sc_key1);
StatsCluster *sc2 = stats_cluster_new(&sc_key2);
cr_assert(stats_cluster_key_equal(&sc_key1, &sc_key2), "%s", __FUNCTION__);
stats_cluster_free(sc1);
stats_cluster_free(sc2);
}
static inline void
assert_key_equal(StatsClusterKey k1, StatsClusterKey k2, gboolean equal)
{
StatsClusterKey key1, key2;
stats_cluster_logpipe_key_set(&key1, k1.name, k1.labels, k1.labels_len);
stats_cluster_logpipe_key_set(&key2, k2.name, k2.labels, k2.labels_len);
cr_assert_eq(stats_cluster_key_equal(&key1, &key2), equal);
cr_assert_eq(stats_cluster_key_hash(&key1) == stats_cluster_key_hash(&key2), equal);
}
static inline StatsClusterKey
test_cluster_key(const gchar *name, StatsClusterLabel *labels, gsize labels_len)
{
return (StatsClusterKey)
{
.name = name,
.labels = labels,
.labels_len = labels_len
};
}
Test(stats_cluster, test_stats_cluster_key)
{
StatsClusterLabel labels1[] =
{
stats_cluster_label("app", "cisco"),
stats_cluster_label("sourceip", "127.0.0.1"),
stats_cluster_label("customlabel", "value"),
};
StatsClusterLabel labels2[] = { stats_cluster_label("app", "cisco") };
assert_key_equal(test_cluster_key("name", NULL, 0), test_cluster_key("name", NULL, 0), TRUE);
assert_key_equal(test_cluster_key("name", labels1, G_N_ELEMENTS(labels1)),
test_cluster_key("name", labels1, G_N_ELEMENTS(labels1)), TRUE);
assert_key_equal(test_cluster_key("name", labels2, G_N_ELEMENTS(labels2)),
test_cluster_key("name", labels2, G_N_ELEMENTS(labels2)), TRUE);
assert_key_equal(test_cluster_key("name", labels1, G_N_ELEMENTS(labels1)),
test_cluster_key("name", NULL, 0), FALSE);
assert_key_equal(test_cluster_key("name", labels1, G_N_ELEMENTS(labels1)),
test_cluster_key("name", labels2, G_N_ELEMENTS(labels2)), FALSE);
assert_key_equal(test_cluster_key("name", NULL, 0), test_cluster_key("name2", NULL, 0), FALSE);
assert_key_equal(test_cluster_key("name", labels1, G_N_ELEMENTS(labels1)),
test_cluster_key("name2", labels1, G_N_ELEMENTS(labels1)), FALSE);
assert_key_equal(test_cluster_key("name", labels1, G_N_ELEMENTS(labels1)),
test_cluster_key("name2", NULL, 0), FALSE);
assert_key_equal(test_cluster_key("name", labels1, G_N_ELEMENTS(labels1)),
test_cluster_key("name2", labels2, G_N_ELEMENTS(labels2)), FALSE);
}
Test(stats_cluster, test_stats_cluster_key_legacy_alias)
{
StatsClusterKey key1, key2, key3;
stats_cluster_logpipe_key_set(&key1, "name", NULL, 0);
stats_cluster_logpipe_key_add_legacy_alias(&key1, SCS_FILE, "id", "instance");
stats_cluster_logpipe_key_set(&key2, "name2", NULL, 0);
stats_cluster_logpipe_key_add_legacy_alias(&key2, SCS_FILE, "id2", "instance");
stats_cluster_logpipe_key_set(&key3, "name", NULL, 0);
cr_assert(stats_cluster_key_equal(&key1, &key1));
cr_assert_eq(stats_cluster_key_hash(&key1), stats_cluster_key_hash(&key1));
cr_assert_not(stats_cluster_key_equal(&key1, &key2));
cr_assert_neq(stats_cluster_key_hash(&key1), stats_cluster_key_hash(&key2));
cr_assert_not(stats_cluster_key_equal(&key1, &key3));
cr_assert_neq(stats_cluster_key_hash(&key1), stats_cluster_key_hash(&key3));
}
typedef struct _ValidateCountersState
{
gint type1;
va_list types;
gint validate_count;
} ValidateCountersState;
static void
_validate_yielded_counters(StatsCluster *sc, gint type, StatsCounterItem *counter, gpointer user_data)
{
ValidateCountersState *st = (ValidateCountersState *) user_data;
gint t;
t = va_arg(st->types, gint);
cr_assert_geq(t, 0, "foreach counter returned a new counter, but we expected the end already");
cr_assert_eq(type, t, "Counter type mismatch");
st->validate_count++;
}
static void
assert_stats_foreach_yielded_counters_matches(StatsCluster *sc, ...)
{
ValidateCountersState st;
va_list va;
gint type_count = 0;
gint t;
va_start(va, sc);
st.validate_count = 0;
va_copy(st.types, va);
t = va_arg(va, gint);
while (t >= 0)
{
type_count++;
t = va_arg(va, gint);
}
stats_cluster_foreach_counter(sc, _validate_yielded_counters, &st);
va_end(va);
cr_assert_eq(type_count, st.validate_count, "the number of validated counters mismatch the expected size");
}
Test(stats_cluster, test_stats_foreach_counter_yields_tracked_counters)
{
StatsClusterKey sc_key;
stats_cluster_logpipe_key_legacy_set(&sc_key, SCS_SOURCE | SCS_FILE, "id", "instance" );
StatsCluster *sc = stats_cluster_new(&sc_key);
assert_stats_foreach_yielded_counters_matches(sc, -1);
stats_cluster_track_counter(sc, SC_TYPE_PROCESSED);
assert_stats_foreach_yielded_counters_matches(sc, SC_TYPE_PROCESSED, -1);
stats_cluster_track_counter(sc, SC_TYPE_STAMP);
assert_stats_foreach_yielded_counters_matches(sc, SC_TYPE_PROCESSED, SC_TYPE_STAMP, -1);
stats_cluster_free(sc);
}
Test(stats_cluster, test_stats_foreach_counter_never_forgets_untracked_counters)
{
StatsClusterKey sc_key;
stats_cluster_logpipe_key_legacy_set(&sc_key, SCS_SOURCE | SCS_FILE, "id", "instance" );
StatsCluster *sc = stats_cluster_new(&sc_key);
StatsCounterItem *processed, *stamp;
processed = stats_cluster_track_counter(sc, SC_TYPE_PROCESSED);
stamp = stats_cluster_track_counter(sc, SC_TYPE_STAMP);
stats_cluster_untrack_counter(sc, SC_TYPE_PROCESSED, &processed);
assert_stats_foreach_yielded_counters_matches(sc, SC_TYPE_PROCESSED, SC_TYPE_STAMP, -1);
stats_cluster_untrack_counter(sc, SC_TYPE_STAMP, &stamp);
assert_stats_foreach_yielded_counters_matches(sc, SC_TYPE_PROCESSED, SC_TYPE_STAMP, -1);
stats_cluster_free(sc);
}
static void
assert_stats_component_name(gint component, const gchar *expected)
{
gchar buf[32];
const gchar *name;
StatsClusterKey sc_key;
stats_cluster_logpipe_key_legacy_set(&sc_key, component, NULL, NULL );
StatsCluster *sc = stats_cluster_new(&sc_key);
name = stats_cluster_get_component_name(sc, buf, sizeof(buf));
cr_assert_str_eq(name, expected, "component name mismatch");
stats_cluster_free(sc);
}
Test(stats_cluster, test_get_component_name_translates_component_to_name_properly)
{
assert_stats_component_name(SCS_SOURCE | SCS_FILE, "src.file");
assert_stats_component_name(SCS_DESTINATION | SCS_FILE, "dst.file");
assert_stats_component_name(SCS_GLOBAL, "global");
assert_stats_component_name(SCS_SOURCE | SCS_GROUP, "source");
assert_stats_component_name(SCS_DESTINATION | SCS_GROUP, "destination");
}
Test(stats_cluster, test_get_counter)
{
StatsClusterKey sc_key;
stats_cluster_logpipe_key_legacy_set(&sc_key, SCS_SOURCE | SCS_FILE, "id", "instance" );
StatsCluster *sc = stats_cluster_new(&sc_key);
StatsCounterItem *processed;
cr_assert_null(stats_cluster_get_counter(sc, SC_TYPE_PROCESSED), "get counter before tracked");
processed = stats_cluster_track_counter(sc, SC_TYPE_PROCESSED);
cr_assert_eq(stats_cluster_get_counter(sc, SC_TYPE_PROCESSED), processed, "get counter after tracked");
StatsCounterItem *saved_processed = processed;
stats_cluster_untrack_counter(sc, SC_TYPE_PROCESSED, &processed);
cr_assert_null(processed, "untrack counter");
cr_assert_eq(stats_cluster_get_counter(sc, SC_TYPE_PROCESSED), saved_processed, "get counter after untracked");
stats_cluster_free(sc);
}
Test(stats_cluster, test_register_type)
{
guint first = stats_register_type("HAL");
guint second = stats_register_type("Just what do you think you are doing, Dave?");
cr_assert_eq(first + 1, second);
guint same = stats_register_type("HAL");
cr_assert_eq(first, same);
}
TestSuite(stats_cluster, .init=setup, .fini = app_shutdown);
|