2 * collectd - src/utils_format_graphite_test.c
3 * Copyright (C) 2016 Florian octo Forster
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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.
24 * Florian octo Forster <octo at collectd.org>
29 #include "common.h" /* for STATIC_ARRAY_SIZE */
31 #include "utils_format_graphite.h"
33 static data_set_t ds_single = {
36 .ds = &(data_source_t){"value", DS_TYPE_GAUGE, NAN, NAN},
40 static data_set_t ds_double = {
45 {"one", DS_TYPE_DERIVE, 0, NAN}, {"two", DS_TYPE_DERIVE, 0, NAN},
50 DEF_TEST(metric_name) {
52 const char *plugin_instance;
53 const char *type_instance;
57 const char *want_name;
60 .want_name = "example@com.test.single",
62 /* plugin and type instances */
64 .plugin_instance = "foo",
65 .type_instance = "bar",
66 .want_name = "example@com.test-foo.single-bar",
69 .plugin_instance = NULL,
70 .type_instance = "bar",
71 .want_name = "example@com.test.single-bar",
74 .plugin_instance = "foo",
75 .type_instance = NULL,
76 .want_name = "example@com.test-foo.single",
80 .plugin_instance = "foo (test)",
81 .type_instance = "test: \"hello\"",
82 .want_name = "example@com.test-foo@@test@.single-test@@@hello@",
84 /* flag GRAPHITE_SEPARATE_INSTANCES */
86 .plugin_instance = "foo",
87 .type_instance = "bar",
88 .flags = GRAPHITE_SEPARATE_INSTANCES,
89 .want_name = "example@com.test.foo.single.bar",
91 /* flag GRAPHITE_ALWAYS_APPEND_DS */
93 .plugin_instance = "foo",
94 .type_instance = "bar",
95 .flags = GRAPHITE_ALWAYS_APPEND_DS,
96 .want_name = "example@com.test-foo.single-bar.value",
98 /* flag GRAPHITE_PRESERVE_SEPARATOR */
100 .plugin_instance = "f.o.o",
101 .type_instance = "b.a.r",
103 .want_name = "example@com.test-f@o@o.single-b@a@r",
106 .plugin_instance = "f.o.o",
107 .type_instance = "b.a.r",
108 .flags = GRAPHITE_PRESERVE_SEPARATOR,
109 .want_name = "example.com.test-f.o.o.single-b.a.r",
111 /* prefix and suffix */
115 .want_name = "foo.example@com.bar.test.single",
120 .want_name = "example@com.bar.test.single",
125 .want_name = "foo.example@com.test.single",
129 for (size_t i = 0; i < STATIC_ARRAY_SIZE(cases); i++) {
131 .values = &(value_t){.gauge = 42},
133 .time = TIME_T_TO_CDTIME_T_STATIC(1480063672),
134 .interval = TIME_T_TO_CDTIME_T_STATIC(10),
135 .host = "example.com",
141 snprintf(want, sizeof(want), "%s 42 1480063672\r\n", cases[i].want_name);
143 if (cases[i].plugin_instance != NULL)
144 sstrncpy(vl.plugin_instance, cases[i].plugin_instance,
145 sizeof(vl.plugin_instance));
146 if (cases[i].type_instance != NULL)
147 sstrncpy(vl.type_instance, cases[i].type_instance,
148 sizeof(vl.type_instance));
151 EXPECT_EQ_INT(0, format_graphite(got, sizeof(got), &ds_single, &vl,
152 cases[i].prefix, cases[i].suffix, '@',
154 EXPECT_EQ_STR(want, got);
160 DEF_TEST(null_termination) {
162 .values = &(value_t){.gauge = 1337},
164 .time = TIME_T_TO_CDTIME_T_STATIC(1480063672),
165 .interval = TIME_T_TO_CDTIME_T_STATIC(10),
166 .host = "example.com",
170 char const *want = "example_com.test.single 1337 1480063672\r\n";
173 for (size_t i = 0; i < sizeof(buffer); i++)
176 EXPECT_EQ_INT(0, format_graphite(buffer, sizeof(buffer), &ds_single, &vl,
177 NULL, NULL, '_', 0));
178 EXPECT_EQ_STR(want, buffer);
179 EXPECT_EQ_INT(0, buffer[strlen(want)]);
180 for (size_t i = strlen(want) + 1; i < sizeof(buffer); i++)
181 EXPECT_EQ_INT((int)i, (int)buffer[i]);
187 RUN_TEST(metric_name);
188 RUN_TEST(null_termination);