Merge pull request #1876 from octo/issue/1819
[collectd.git] / src / utils_latency_test.c
1 /**
2  * collectd - src/utils_latency_test.c
3  * Copyright (C) 2015       Florian octo Forster
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Authors:
24  *   Florian octo Forster <octo at collectd.org>
25  */
26
27 #define DBL_PRECISION 1e-9
28
29 #include "common.h" /* for STATIC_ARRAY_SIZE */
30 #include "collectd.h"
31
32 #include "testing.h"
33 #include "utils_time.h"
34 #include "utils_latency.h"
35
36 DEF_TEST(simple)
37 {
38   struct {
39     double val;
40     double min;
41     double max;
42     double sum;
43     double avg;
44   } cases[] = {
45   /* val  min  max  sum   avg */
46     {0.5, 0.5, 0.5, 0.5,  0.5},
47     {0.3, 0.3, 0.5, 0.8,  0.4},
48     {0.7, 0.3, 0.7, 1.5,  0.5},
49     {2.5, 0.3, 2.5, 4.0,  1.0},
50     { 99, 0.3,  99, 103, 20.6},
51     /* { -1, 0.3,  99, 103, 20.6}, see issue #1139 */
52   };
53   latency_counter_t *l;
54
55   CHECK_NOT_NULL (l = latency_counter_create ());
56
57   for (size_t i = 0; i < STATIC_ARRAY_SIZE (cases); i++) {
58     printf ("# case %zu: DOUBLE_TO_CDTIME_T(%g) = %"PRIu64"\n",
59         i, cases[i].val, DOUBLE_TO_CDTIME_T (cases[i].val));
60     latency_counter_add (l, DOUBLE_TO_CDTIME_T (cases[i].val));
61
62     EXPECT_EQ_DOUBLE (cases[i].min, CDTIME_T_TO_DOUBLE (latency_counter_get_min (l)));
63     EXPECT_EQ_DOUBLE (cases[i].max, CDTIME_T_TO_DOUBLE (latency_counter_get_max (l)));
64     EXPECT_EQ_DOUBLE (cases[i].sum, CDTIME_T_TO_DOUBLE (latency_counter_get_sum (l)));
65     EXPECT_EQ_DOUBLE (cases[i].avg, CDTIME_T_TO_DOUBLE (latency_counter_get_average (l)));
66   }
67
68   latency_counter_destroy (l);
69   return 0;
70 }
71
72 DEF_TEST(percentile)
73 {
74   latency_counter_t *l;
75
76   CHECK_NOT_NULL (l = latency_counter_create ());
77
78   for (size_t i = 0; i < 100; i++) {
79     latency_counter_add (l, TIME_T_TO_CDTIME_T (((time_t) i) + 1));
80   }
81
82   EXPECT_EQ_DOUBLE (  1.0, CDTIME_T_TO_DOUBLE (latency_counter_get_min (l)));
83   EXPECT_EQ_DOUBLE (100.0, CDTIME_T_TO_DOUBLE (latency_counter_get_max (l)));
84   EXPECT_EQ_DOUBLE (100.0 * 101.0 / 2.0, CDTIME_T_TO_DOUBLE (latency_counter_get_sum (l)));
85   EXPECT_EQ_DOUBLE ( 50.5, CDTIME_T_TO_DOUBLE (latency_counter_get_average (l)));
86
87   EXPECT_EQ_DOUBLE (50.0, CDTIME_T_TO_DOUBLE (latency_counter_get_percentile (l, 50.0)));
88   EXPECT_EQ_DOUBLE (80.0, CDTIME_T_TO_DOUBLE (latency_counter_get_percentile (l, 80.0)));
89   EXPECT_EQ_DOUBLE (95.0, CDTIME_T_TO_DOUBLE (latency_counter_get_percentile (l, 95.0)));
90   EXPECT_EQ_DOUBLE (99.0, CDTIME_T_TO_DOUBLE (latency_counter_get_percentile (l, 99.0)));
91
92   CHECK_ZERO (latency_counter_get_percentile (l, -1.0));
93   CHECK_ZERO (latency_counter_get_percentile (l, 101.0));
94
95   latency_counter_destroy (l);
96   return 0;
97 }
98
99 int main (void)
100 {
101   RUN_TEST(simple);
102   RUN_TEST(percentile);
103
104   END_TEST;
105 }
106
107 /* vim: set sw=2 sts=2 et : */