rspamd/test/rspamd_rrd_test.c

105 lines
2.7 KiB
C
Raw Normal View History

2016-02-04 10:37:21 +01:00
/*-
* Copyright 2016 Vsevolod Stakhov
*
2016-02-04 10:37:21 +01:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
2016-02-04 10:37:21 +01:00
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "config.h"
#include "tests.h"
#include "rrd.h"
2015-09-22 19:17:24 +02:00
#include "rspamd.h"
2015-09-15 14:38:39 +02:00
#include "ottery.h"
2015-09-19 22:31:34 +02:00
const int rows_cnt = 20;
const int pdp_per_cdp = 60;
void
rspamd_rrd_test_func ()
{
gchar tmpfile[PATH_MAX];
2015-09-19 22:31:34 +02:00
struct rrd_rra_def rra[4];
2015-09-15 14:38:39 +02:00
struct rrd_ds_def ds[2];
GArray ar;
2012-12-18 19:12:45 +01:00
GError *err = NULL;
struct rspamd_rrd_file *rrd;
2015-09-15 14:38:39 +02:00
gdouble ticks;
2012-12-21 17:55:22 +01:00
gint i;
2015-09-15 14:38:39 +02:00
gdouble t[2], cnt = 0.0;
rspamd_snprintf (tmpfile, sizeof (tmpfile), "/tmp/rspamd_rrd.rrd");
2015-09-19 22:31:34 +02:00
unlink (tmpfile);
/* Create sample rrd */
2015-09-15 14:38:39 +02:00
ticks = rspamd_get_calendar_ticks ();
2015-09-19 22:31:34 +02:00
g_assert ((rrd = rspamd_rrd_create (tmpfile, 2, 4, 1, ticks, &err)) != NULL);
/* Add RRA */
2015-09-15 14:38:39 +02:00
rrd_make_default_rra ("AVERAGE", pdp_per_cdp, rows_cnt, &rra[0]);
2015-09-19 22:31:34 +02:00
rrd_make_default_rra ("AVERAGE", pdp_per_cdp / 2, rows_cnt, &rra[1]);
rrd_make_default_rra ("AVERAGE", pdp_per_cdp / 4, rows_cnt, &rra[2]);
rrd_make_default_rra ("AVERAGE", pdp_per_cdp / 10, rows_cnt, &rra[3]);
2015-09-15 14:38:39 +02:00
ar.data = rra;
ar.len = sizeof (rra);
2012-12-18 19:12:45 +01:00
g_assert (rspamd_rrd_add_rra (rrd, &ar, &err));
/* Add DS */
2015-09-15 14:38:39 +02:00
rrd_make_default_ds ("test", "COUNTER", 1, &ds[0]);
rrd_make_default_ds ("test1", "COUNTER", 1, &ds[1]);
ar.data = ds;
ar.len = sizeof (ds);
2012-12-18 19:12:45 +01:00
g_assert (rspamd_rrd_add_ds (rrd, &ar, &err));
/* Finalize */
2012-12-18 19:12:45 +01:00
g_assert (rspamd_rrd_finalize (rrd, &err));
/* Close */
rspamd_rrd_close (rrd);
/* Reopen */
2012-12-18 19:12:45 +01:00
g_assert ((rrd = rspamd_rrd_open (tmpfile, &err)) != NULL);
/* Add some points */
2015-09-15 14:38:39 +02:00
for (i = 0; i < pdp_per_cdp * rows_cnt / 2; i ++) {
t[0] = i;
t[1] = cnt ++;
ar.data = t;
ar.len = sizeof (t);
ticks += 1.0;
g_assert (rspamd_rrd_add_record (rrd, &ar, ticks, &err));
2012-12-21 17:55:22 +01:00
}
2015-09-15 14:38:39 +02:00
/* Add some more points */
2015-09-15 18:01:27 +02:00
for (i = 0; i < pdp_per_cdp * rows_cnt / 4; i ++) {
2015-09-15 14:38:39 +02:00
t[0] = i + rspamd_time_jitter (1.0, 0.0);
t[1] = cnt ++;
ar.data = t;
ar.len = sizeof (t);
2015-09-19 22:31:34 +02:00
ticks += 1.0;
2015-09-15 14:38:39 +02:00
g_assert (rspamd_rrd_add_record (rrd, &ar, ticks, &err));
}
2015-09-19 22:31:34 +02:00
/* Add undefined interval */
ticks += 200;
2015-09-15 14:38:39 +02:00
/* Add some more points */
2015-09-19 22:31:34 +02:00
for (i = 0; i < pdp_per_cdp * rows_cnt / 8; i ++) {
t[0] = i;
2015-09-15 14:38:39 +02:00
t[1] = cnt ++;
ar.data = t;
ar.len = sizeof (t);
2015-09-19 22:31:34 +02:00
ticks += 1.0;
2015-09-15 14:38:39 +02:00
g_assert (rspamd_rrd_add_record (rrd, &ar, ticks, &err));
}
/* Finish */
rspamd_rrd_close (rrd);
/* unlink (tmpfile); */
}