1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
13 #include <sys/queue.h>
15 #include <rte_common.h>
17 #include <cmdline_vt100.h>
18 #include <cmdline_rdline.h>
19 #include <cmdline_parse.h>
20 #include <cmdline_socket.h>
23 #include "test_cmdline.h"
25 /****************************************************************/
26 /* static functions required for some tests */
28 valid_buffer(__rte_unused struct rdline *rdl,
29 __rte_unused const char *buf,
30 __rte_unused unsigned int size)
35 complete_buffer(__rte_unused struct rdline *rdl,
36 __rte_unused const char *buf,
37 __rte_unused char *dstbuf,
38 __rte_unused unsigned int dstsize,
39 __rte_unused int *state)
44 /****************************************************************/
47 test_cmdline_parse_fns(void)
51 char dst[CMDLINE_TEST_BUFSIZE];
53 if (cmdline_parse(NULL, "buffer") >= 0)
55 if (cmdline_parse(&cl, NULL) >= 0)
58 if (cmdline_complete(NULL, "buffer", &i, dst, sizeof(dst)) >= 0)
60 if (cmdline_complete(&cl, NULL, &i, dst, sizeof(dst)) >= 0)
62 if (cmdline_complete(&cl, "buffer", NULL, dst, sizeof(dst)) >= 0)
64 if (cmdline_complete(&cl, "buffer", &i, NULL, sizeof(dst)) >= 0)
70 printf("Error: function accepted null parameter!\n");
75 test_cmdline_rdline_fns(void)
78 rdline_write_char_t *wc = &cmdline_write_char;
79 rdline_validate_t *v = &valid_buffer;
80 rdline_complete_t *c = &complete_buffer;
82 if (rdline_init(NULL, wc, v, c) >= 0)
84 if (rdline_init(&rdl, NULL, v, c) >= 0)
86 if (rdline_init(&rdl, wc, NULL, c) >= 0)
88 if (rdline_init(&rdl, wc, v, NULL) >= 0)
90 if (rdline_char_in(NULL, 0) >= 0)
92 if (rdline_get_buffer(NULL) != NULL)
94 if (rdline_add_history(NULL, "history") >= 0)
96 if (rdline_add_history(&rdl, NULL) >= 0)
98 if (rdline_get_history_item(NULL, 0) != NULL)
102 rdline_newline(NULL, "prompt");
103 rdline_newline(&rdl, NULL);
106 rdline_restart(NULL);
107 rdline_redisplay(NULL);
109 rdline_clear_history(NULL);
114 printf("Error: function accepted null parameter!\n");
119 test_cmdline_vt100_fns(void)
121 if (vt100_parser(NULL, 0) >= 0) {
122 printf("Error: function accepted null parameter!\n");
133 test_cmdline_socket_fns(void)
135 cmdline_parse_ctx_t ctx;
137 if (cmdline_stdin_new(NULL, "prompt") != NULL)
139 if (cmdline_stdin_new(&ctx, NULL) != NULL)
141 if (cmdline_file_new(NULL, "prompt", "/dev/null") != NULL)
143 if (cmdline_file_new(&ctx, NULL, "/dev/null") != NULL)
145 if (cmdline_file_new(&ctx, "prompt", NULL) != NULL)
147 if (cmdline_file_new(&ctx, "prompt", "-/invalid/~/path") != NULL) {
148 printf("Error: succeeded in opening invalid file for reading!");
151 if (cmdline_file_new(&ctx, "prompt", "/dev/null") == NULL) {
152 printf("Error: failed to open /dev/null for reading!");
157 cmdline_stdin_exit(NULL);
161 printf("Error: function accepted null parameter!\n");
166 test_cmdline_fns(void)
168 cmdline_parse_ctx_t ctx;
169 struct cmdline cl, *tmp;
171 memset(&ctx, 0, sizeof(ctx));
172 tmp = cmdline_new(&ctx, "test", -1, -1);
176 if (cmdline_new(NULL, "prompt", 0, 0) != NULL)
178 if (cmdline_new(&ctx, NULL, 0, 0) != NULL)
180 if (cmdline_in(NULL, "buffer", CMDLINE_TEST_BUFSIZE) >= 0)
182 if (cmdline_in(&cl, NULL, CMDLINE_TEST_BUFSIZE) >= 0)
184 if (cmdline_write_char(NULL, 0) >= 0)
188 cmdline_set_prompt(NULL, "prompt");
190 cmdline_printf(NULL, "format");
191 /* this should fail as stream handles are invalid */
192 cmdline_printf(tmp, "format");
193 cmdline_interact(NULL);
196 /* check if void calls change anything when they should fail */
199 cmdline_printf(&cl, NULL);
200 if (memcmp(&cl, tmp, sizeof(cl))) goto mismatch;
201 cmdline_set_prompt(&cl, NULL);
202 if (memcmp(&cl, tmp, sizeof(cl))) goto mismatch;
203 cmdline_in(&cl, NULL, CMDLINE_TEST_BUFSIZE);
204 if (memcmp(&cl, tmp, sizeof(cl))) goto mismatch;
211 printf("Error: function accepted null parameter!\n");
214 printf("Error: data changed!\n");
218 /* test library functions. the point of these tests is not so much to test
219 * functions' behaviour as it is to make sure there are no segfaults if
220 * they are called with invalid parameters.
223 test_cmdline_lib(void)
225 if (test_cmdline_parse_fns() < 0)
227 if (test_cmdline_rdline_fns() < 0)
229 if (test_cmdline_vt100_fns() < 0)
231 if (test_cmdline_socket_fns() < 0)
233 if (test_cmdline_fns() < 0)