1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
9 #include <rte_string_fns.h>
11 #include <cmdline_parse.h>
12 #include <cmdline_parse_num.h>
14 #include "test_cmdline.h"
16 struct num_unsigned_str {
21 struct num_signed_str {
26 const struct num_unsigned_str num_valid_positive_strs[] = {
27 /* decimal positive */
30 {"128", INT8_MAX + 1 },
32 {"256", UINT8_MAX + 1 },
33 {"32767", INT16_MAX },
34 {"32768", INT16_MAX + 1 },
35 {"65535", UINT16_MAX },
36 {"65536", UINT16_MAX + 1 },
37 {"2147483647", INT32_MAX },
38 {"2147483648", INT32_MAX + 1U },
39 {"4294967295", UINT32_MAX },
40 {"4294967296", UINT32_MAX + 1ULL },
41 {"9223372036854775807", INT64_MAX },
42 {"9223372036854775808", INT64_MAX + 1ULL},
43 {"18446744073709551615", UINT64_MAX },
44 /* hexadecimal (no leading zeroes) */
47 {"0x80", INT8_MAX + 1 },
49 {"0x100", UINT8_MAX + 1 },
50 {"0x7FFF", INT16_MAX },
51 {"0x8000", INT16_MAX + 1 },
52 {"0xFFFF", UINT16_MAX },
53 {"0x10000", UINT16_MAX + 1 },
54 {"0x7FFFFFFF", INT32_MAX },
55 {"0x80000000", INT32_MAX + 1U },
56 {"0xFFFFFFFF", UINT32_MAX },
57 {"0x100000000", UINT32_MAX + 1ULL },
58 {"0x7FFFFFFFFFFFFFFF", INT64_MAX },
59 {"0x8000000000000000", INT64_MAX + 1ULL},
60 {"0xFFFFFFFFFFFFFFFF", UINT64_MAX },
61 /* hexadecimal (with leading zeroes) */
64 {"0x80", INT8_MAX + 1 },
66 {"0x0100", UINT8_MAX + 1 },
67 {"0x7FFF", INT16_MAX },
68 {"0x8000", INT16_MAX + 1 },
69 {"0xFFFF", UINT16_MAX },
70 {"0x00010000", UINT16_MAX + 1 },
71 {"0x7FFFFFFF", INT32_MAX },
72 {"0x80000000", INT32_MAX + 1U },
73 {"0xFFFFFFFF", UINT32_MAX },
74 {"0x0000000100000000", UINT32_MAX + 1ULL },
75 {"0x7FFFFFFFFFFFFFFF", INT64_MAX },
76 {"0x8000000000000000", INT64_MAX + 1ULL},
77 {"0xFFFFFFFFFFFFFFFF", UINT64_MAX },
78 /* check all characters */
79 {"0x1234567890ABCDEF", 0x1234567890ABCDEFULL },
80 {"0x1234567890abcdef", 0x1234567890ABCDEFULL },
81 /* binary (no leading zeroes) */
83 {"0b1111111", INT8_MAX },
84 {"0b10000000", INT8_MAX + 1 },
85 {"0b11111111", UINT8_MAX },
86 {"0b100000000", UINT8_MAX + 1 },
87 {"0b111111111111111", INT16_MAX },
88 {"0b1000000000000000", INT16_MAX + 1 },
89 {"0b1111111111111111", UINT16_MAX },
90 {"0b10000000000000000", UINT16_MAX + 1 },
91 {"0b1111111111111111111111111111111", INT32_MAX },
92 {"0b10000000000000000000000000000000", INT32_MAX + 1U },
93 {"0b11111111111111111111111111111111", UINT32_MAX },
94 {"0b100000000000000000000000000000000", UINT32_MAX + 1ULL },
95 {"0b111111111111111111111111111111111111111111111111111111111111111",
97 {"0b1000000000000000000000000000000000000000000000000000000000000000",
99 {"0b1111111111111111111111111111111111111111111111111111111111111111",
101 /* binary (with leading zeroes) */
102 {"0b01111111", INT8_MAX },
103 {"0b0000000100000000", UINT8_MAX + 1 },
104 {"0b0111111111111111", INT16_MAX },
105 {"0b00000000000000010000000000000000", UINT16_MAX + 1 },
106 {"0b01111111111111111111111111111111", INT32_MAX },
107 {"0b0000000000000000000000000000000100000000000000000000000000000000",
109 {"0b0111111111111111111111111111111111111111111111111111111111111111",
114 {"0200", INT8_MAX + 1 },
115 {"0377", UINT8_MAX },
116 {"0400", UINT8_MAX + 1 },
117 {"077777", INT16_MAX },
118 {"0100000", INT16_MAX + 1 },
119 {"0177777", UINT16_MAX },
120 {"0200000", UINT16_MAX + 1 },
121 {"017777777777", INT32_MAX },
122 {"020000000000", INT32_MAX + 1U },
123 {"037777777777", UINT32_MAX },
124 {"040000000000", UINT32_MAX + 1ULL },
125 {"0777777777777777777777", INT64_MAX },
126 {"01000000000000000000000", INT64_MAX + 1ULL},
127 {"01777777777777777777777", UINT64_MAX },
128 /* check all numbers */
129 {"012345670", 012345670 },
130 {"076543210", 076543210 },
133 const struct num_signed_str num_valid_negative_strs[] = {
134 /* deciman negative */
136 {"-129", INT8_MIN - 1 },
137 {"-32768", INT16_MIN },
138 {"-32769", INT16_MIN - 1 },
139 {"-2147483648", INT32_MIN },
140 {"-2147483649", INT32_MIN - 1LL },
141 {"-9223372036854775808", INT64_MIN },
144 const struct num_unsigned_str num_garbage_positive_strs[] = {
145 /* valid strings with garbage on the end, should still be valid */
147 {"9223372036854775807\0garbage", INT64_MAX },
148 {"9223372036854775807\tgarbage", INT64_MAX },
149 {"9223372036854775807\rgarbage", INT64_MAX },
150 {"9223372036854775807\ngarbage", INT64_MAX },
151 {"9223372036854775807#garbage", INT64_MAX },
152 {"9223372036854775807 garbage", INT64_MAX },
154 {"0x7FFFFFFFFFFFFFFF\0garbage", INT64_MAX },
155 {"0x7FFFFFFFFFFFFFFF\tgarbage", INT64_MAX },
156 {"0x7FFFFFFFFFFFFFFF\rgarbage", INT64_MAX },
157 {"0x7FFFFFFFFFFFFFFF\ngarbage", INT64_MAX },
158 {"0x7FFFFFFFFFFFFFFF#garbage", INT64_MAX },
159 {"0x7FFFFFFFFFFFFFFF garbage", INT64_MAX },
161 {"0b1111111111111111111111111111111\0garbage", INT32_MAX },
162 {"0b1111111111111111111111111111111\rgarbage", INT32_MAX },
163 {"0b1111111111111111111111111111111\tgarbage", INT32_MAX },
164 {"0b1111111111111111111111111111111\ngarbage", INT32_MAX },
165 {"0b1111111111111111111111111111111#garbage", INT32_MAX },
166 {"0b1111111111111111111111111111111 garbage", INT32_MAX },
168 {"01777777777777777777777\0garbage", UINT64_MAX },
169 {"01777777777777777777777\rgarbage", UINT64_MAX },
170 {"01777777777777777777777\tgarbage", UINT64_MAX },
171 {"01777777777777777777777\ngarbage", UINT64_MAX },
172 {"01777777777777777777777#garbage", UINT64_MAX },
173 {"01777777777777777777777 garbage", UINT64_MAX },
176 const struct num_signed_str num_garbage_negative_strs[] = {
177 /* valid strings with garbage on the end, should still be valid */
178 {"-9223372036854775808\0garbage", INT64_MIN },
179 {"-9223372036854775808\rgarbage", INT64_MIN },
180 {"-9223372036854775808\tgarbage", INT64_MIN },
181 {"-9223372036854775808\ngarbage", INT64_MIN },
182 {"-9223372036854775808#garbage", INT64_MIN },
183 {"-9223372036854775808 garbage", INT64_MIN },
186 const char * num_invalid_strs[] = {
187 "18446744073709551616", /* out of range unsigned */
188 "-9223372036854775809", /* out of range negative signed */
189 "0x10000000000000000", /* out of range hex */
190 /* out of range binary */
191 "0b10000000000000000000000000000000000000000000000000000000000000000",
192 "020000000000000000000000", /* out of range octal */
198 /* false negative numbers */
202 /* too long (128+ chars) */
203 "0b1111000011110000111100001111000011110000111100001111000011110000"
204 "1111000011110000111100001111000011110000111100001111000011110000",
220 can_parse_unsigned(uint64_t expected_result, enum cmdline_numtype type)
224 if (expected_result > UINT8_MAX)
228 if (expected_result > UINT16_MAX)
232 if (expected_result > UINT32_MAX)
236 if (expected_result > INT8_MAX)
240 if (expected_result > INT16_MAX)
244 if (expected_result > INT32_MAX)
248 if (expected_result > INT64_MAX)
258 can_parse_signed(int64_t expected_result, enum cmdline_numtype type)
262 if (expected_result > UINT8_MAX || expected_result < 0)
266 if (expected_result > UINT16_MAX || expected_result < 0)
270 if (expected_result > UINT32_MAX || expected_result < 0)
274 if (expected_result < 0)
278 if (expected_result > INT8_MAX || expected_result < INT8_MIN)
282 if (expected_result > INT16_MAX || expected_result < INT16_MIN)
286 if (expected_result > INT32_MAX || expected_result < INT32_MIN)
295 /* test invalid parameters */
297 test_parse_num_invalid_param(void)
299 char buf[CMDLINE_TEST_BUFSIZE];
301 cmdline_parse_token_num_t token;
305 token.num_data.type = UINT32;
307 /* copy string to buffer */
308 strlcpy(buf, num_valid_positive_strs[0].str, sizeof(buf));
311 ret = cmdline_parse_num(NULL, NULL, NULL, 0);
313 printf("Error: parser accepted null parameters!\n");
318 ret = cmdline_parse_num(NULL, buf, (void*)&result, sizeof(result));
320 printf("Error: parser accepted null token!\n");
325 ret = cmdline_parse_num((cmdline_parse_token_hdr_t*)&token, NULL,
326 (void*)&result, sizeof(result));
328 printf("Error: parser accepted null string!\n");
332 /* try null result */
333 ret = cmdline_parse_num((cmdline_parse_token_hdr_t*)&token, buf,
336 printf("Error: parser rejected null result!\n");
340 /* test help function */
341 memset(&buf, 0, sizeof(buf));
344 ret = cmdline_get_help_num(NULL, NULL, 0);
346 printf("Error: help function accepted null parameters!\n");
351 ret = cmdline_get_help_num(NULL, buf, sizeof(buf));
353 printf("Error: help function accepted null token!\n");
358 ret = cmdline_get_help_num((cmdline_parse_token_hdr_t*)&token, buf, sizeof(buf));
360 printf("Error: help function failed with valid parameters!\n");
366 /* test valid parameters but invalid data */
368 test_parse_num_invalid_data(void)
370 enum cmdline_numtype type;
373 char buf[CMDLINE_TEST_BUFSIZE];
374 uint64_t result; /* pick largest buffer */
375 cmdline_parse_token_num_t token;
377 /* cycle through all possible parsed types */
378 for (type = UINT8; type <= INT64; type++) {
379 token.num_data.type = type;
381 /* test full strings */
382 for (i = 0; i < RTE_DIM(num_invalid_strs); i++) {
384 memset(&result, 0, sizeof(uint64_t));
385 memset(&buf, 0, sizeof(buf));
387 ret = cmdline_parse_num((cmdline_parse_token_hdr_t*)&token,
388 num_invalid_strs[i], (void*)&result, sizeof(result));
390 /* get some info about what we are trying to parse */
391 cmdline_get_help_num((cmdline_parse_token_hdr_t*)&token,
394 printf("Error: parsing %s as %s succeeded!\n",
395 num_invalid_strs[i], buf);
403 /* test valid parameters and data */
405 test_parse_num_valid(void)
408 enum cmdline_numtype type;
410 char buf[CMDLINE_TEST_BUFSIZE];
412 cmdline_parse_token_num_t token;
414 /** valid strings **/
416 /* cycle through all possible parsed types */
417 for (type = UINT8; type <= INT64; type++) {
418 token.num_data.type = type;
420 /* test positive strings */
421 for (i = 0; i < RTE_DIM(num_valid_positive_strs); i++) {
423 memset(&buf, 0, sizeof(buf));
425 cmdline_get_help_num((cmdline_parse_token_hdr_t*)&token,
428 ret = cmdline_parse_num((cmdline_parse_token_hdr_t*) &token,
429 num_valid_positive_strs[i].str,
430 (void*)&result, sizeof(result));
432 /* if it should have passed but didn't, or if it should have failed but didn't */
433 if ((ret < 0) == (can_parse_unsigned(num_valid_positive_strs[i].result, type) > 0)) {
434 printf("Error: parser behaves unexpectedly when parsing %s as %s!\n",
435 num_valid_positive_strs[i].str, buf);
438 /* check if result matches what it should have matched
439 * since unsigned numbers don't care about number of bits, we can just convert
440 * everything to uint64_t without any worries. */
441 if (ret > 0 && num_valid_positive_strs[i].result != result) {
442 printf("Error: parsing %s as %s failed: result mismatch!\n",
443 num_valid_positive_strs[i].str, buf);
448 /* test negative strings */
449 for (i = 0; i < RTE_DIM(num_valid_negative_strs); i++) {
451 memset(&buf, 0, sizeof(buf));
453 cmdline_get_help_num((cmdline_parse_token_hdr_t*)&token,
456 ret = cmdline_parse_num((cmdline_parse_token_hdr_t*) &token,
457 num_valid_negative_strs[i].str,
458 (void*)&result, sizeof(result));
460 /* if it should have passed but didn't, or if it should have failed but didn't */
461 if ((ret < 0) == (can_parse_signed(num_valid_negative_strs[i].result, type) > 0)) {
462 printf("Error: parser behaves unexpectedly when parsing %s as %s!\n",
463 num_valid_negative_strs[i].str, buf);
466 /* check if result matches what it should have matched
467 * the result is signed in this case, so we have to account for that */
469 /* detect negative */
472 result = (int8_t) result;
475 result = (int16_t) result;
478 result = (int32_t) result;
483 if (num_valid_negative_strs[i].result == (int64_t) result)
485 printf("Error: parsing %s as %s failed: result mismatch!\n",
486 num_valid_negative_strs[i].str, buf);
492 /** garbage strings **/
494 /* cycle through all possible parsed types */
495 for (type = UINT8; type <= INT64; type++) {
496 token.num_data.type = type;
498 /* test positive garbage strings */
499 for (i = 0; i < RTE_DIM(num_garbage_positive_strs); i++) {
501 memset(&buf, 0, sizeof(buf));
503 cmdline_get_help_num((cmdline_parse_token_hdr_t*)&token,
506 ret = cmdline_parse_num((cmdline_parse_token_hdr_t*) &token,
507 num_garbage_positive_strs[i].str,
508 (void*)&result, sizeof(result));
510 /* if it should have passed but didn't, or if it should have failed but didn't */
511 if ((ret < 0) == (can_parse_unsigned(num_garbage_positive_strs[i].result, type) > 0)) {
512 printf("Error: parser behaves unexpectedly when parsing %s as %s!\n",
513 num_garbage_positive_strs[i].str, buf);
516 /* check if result matches what it should have matched
517 * since unsigned numbers don't care about number of bits, we can just convert
518 * everything to uint64_t without any worries. */
519 if (ret > 0 && num_garbage_positive_strs[i].result != result) {
520 printf("Error: parsing %s as %s failed: result mismatch!\n",
521 num_garbage_positive_strs[i].str, buf);
526 /* test negative strings */
527 for (i = 0; i < RTE_DIM(num_garbage_negative_strs); i++) {
529 memset(&buf, 0, sizeof(buf));
531 cmdline_get_help_num((cmdline_parse_token_hdr_t*)&token,
534 ret = cmdline_parse_num((cmdline_parse_token_hdr_t*) &token,
535 num_garbage_negative_strs[i].str,
536 (void*)&result, sizeof(result));
538 /* if it should have passed but didn't, or if it should have failed but didn't */
539 if ((ret < 0) == (can_parse_signed(num_garbage_negative_strs[i].result, type) > 0)) {
540 printf("Error: parser behaves unexpectedly when parsing %s as %s!\n",
541 num_garbage_negative_strs[i].str, buf);
544 /* check if result matches what it should have matched
545 * the result is signed in this case, so we have to account for that */
547 /* detect negative */
550 if (result & (INT8_MAX + 1))
551 result |= 0xFFFFFFFFFFFFFF00ULL;
554 if (result & (INT16_MAX + 1))
555 result |= 0xFFFFFFFFFFFF0000ULL;
558 if (result & (INT32_MAX + 1ULL))
559 result |= 0xFFFFFFFF00000000ULL;
564 if (num_garbage_negative_strs[i].result == (int64_t) result)
566 printf("Error: parsing %s as %s failed: result mismatch!\n",
567 num_garbage_negative_strs[i].str, buf);
573 memset(&buf, 0, sizeof(buf));
576 cmdline_get_help_num((cmdline_parse_token_hdr_t*)&token,