2 * collectd - src/tests/utils_cmds_test.c
3 * Copyright (C) 2016 Sebastian 'tokkee' Harl
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 * Sebastian 'tokkee' Harl <sh at tokkee.org>
29 #include "utils_cmds.h"
31 static void error_cb(void *ud, cmd_status_t status, const char *format,
36 printf("ERROR[%d]: ", status);
42 static cmd_options_t default_host_opts = {
43 /* identifier_default_host = */ "dummy-host",
49 cmd_status_t expected_status;
50 cmd_type_t expected_type;
52 /* Valid FLUSH commands. */
54 "FLUSH", NULL, CMD_OK, CMD_FLUSH,
57 "FLUSH identifier=myhost/magic/MAGIC", NULL, CMD_OK, CMD_FLUSH,
60 "FLUSH identifier=magic/MAGIC", &default_host_opts, CMD_OK, CMD_FLUSH,
63 "FLUSH timeout=123 plugin=\"A\"", NULL, CMD_OK, CMD_FLUSH,
65 /* Invalid FLUSH commands. */
67 /* Missing hostname; no default. */
68 "FLUSH identifier=magic/MAGIC", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
71 /* Missing 'identifier' key. */
72 "FLUSH myhost/magic/MAGIC", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
75 /* Invalid timeout. */
76 "FLUSH timeout=A", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
79 /* Invalid identifier. */
80 "FLUSH identifier=invalid", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
84 "FLUSH invalid=option", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
87 /* Valid GETVAL commands. */
89 "GETVAL myhost/magic/MAGIC", NULL, CMD_OK, CMD_GETVAL,
92 "GETVAL magic/MAGIC", &default_host_opts, CMD_OK, CMD_GETVAL,
95 /* Invalid GETVAL commands. */
97 "GETVAL magic/MAGIC", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
100 "GETVAL", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
103 "GETVAL invalid", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
106 /* Valid LISTVAL commands. */
108 "LISTVAL", NULL, CMD_OK, CMD_LISTVAL,
111 /* Invalid LISTVAL commands. */
113 "LISTVAL invalid", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
116 /* Valid PUTVAL commands. */
118 "PUTVAL magic/MAGIC N:42", &default_host_opts, CMD_OK, CMD_PUTVAL,
121 "PUTVAL myhost/magic/MAGIC N:42", NULL, CMD_OK, CMD_PUTVAL,
124 "PUTVAL myhost/magic/MAGIC 1234:42", NULL, CMD_OK, CMD_PUTVAL,
127 "PUTVAL myhost/magic/MAGIC 1234:42 2345:23", NULL, CMD_OK, CMD_PUTVAL,
130 "PUTVAL myhost/magic/MAGIC interval=2 1234:42", NULL, CMD_OK,
134 "PUTVAL myhost/magic/MAGIC interval=2 1234:42 interval=5 2345:23", NULL,
138 /* Invalid PUTVAL commands. */
140 "PUTVAL magic/MAGIC N:42", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
143 "PUTVAL", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
146 "PUTVAL invalid N:42", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
149 "PUTVAL myhost/magic/MAGIC A:42", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
152 "PUTVAL myhost/magic/MAGIC 1234:A", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
155 "PUTVAL myhost/magic/MAGIC", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
158 "PUTVAL 1234:A", NULL, CMD_PARSE_ERROR, CMD_UNKNOWN,
161 "PUTVAL myhost/magic/UNKNOWN 1234:42", NULL, CMD_PARSE_ERROR,
165 * As of collectd 5.x, PUTVAL accepts invalid options.
167 "PUTVAL myhost/magic/MAGIC invalid=2 1234:42",
174 /* Invalid commands. */
176 "INVALID", NULL, CMD_UNKNOWN_COMMAND, CMD_UNKNOWN,
179 "INVALID interval=2", NULL, CMD_UNKNOWN_COMMAND, CMD_UNKNOWN,
184 cmd_error_handler_t err = {error_cb, NULL};
187 for (size_t i = 0; i < STATIC_ARRAY_SIZE(parse_data); i++) {
188 char *input = strdup(parse_data[i].input);
190 char description[1024];
196 memset(&cmd, 0, sizeof(cmd));
198 status = cmd_parse(input, &cmd, parse_data[i].opts, &err);
199 snprintf(description, sizeof(description), "cmd_parse (\"%s\", opts=%p) = "
200 "%d (type=%d [%s]); want %d "
202 parse_data[i].input, parse_data[i].opts, status, cmd.type,
203 CMD_TO_STRING(cmd.type), parse_data[i].expected_status,
204 parse_data[i].expected_type,
205 CMD_TO_STRING(parse_data[i].expected_type));
206 result = (status == parse_data[i].expected_status) &&
207 (cmd.type == parse_data[i].expected_type);
208 LOG(result, description);
210 /* Run all tests before failing. */
218 return (test_result);
221 int main(int argc, char **argv) {