#include <locale.h>
#include "../util/argconfig.h"
-#include "nvme/types.h"
+#include "../util/cleanup.h"
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
check_val(test->arg, &test->exp, test->val, test->size);
}
+#define COMMA_SEP_ARRAY_MAX_VALUES 4
+
+struct comma_sep_array_test {
+ const char *input;
+ int ret;
+ __u32 values[COMMA_SEP_ARRAY_MAX_VALUES];
+};
+
+const struct comma_sep_array_test comma_sep_array_tests[] = {
+ {"", 0},
+ {",,,", 0},
+ {" ", -1},
+ {"abc", -1},
+ {"0xFFFFFFFF", 1, {0xFFFFFFFF}},
+ {"0x100000000", -1},
+ {"123,0x456", 2, {123, 0x456}},
+ {",1,,2,", 2, {1, 2}},
+ {"1,22,333,4444", 4, {1, 22, 333, 4444}},
+ {"1,2,3,4,5", -1},
+};
+
+void comma_sep_array_test(const struct comma_sep_array_test *test)
+{
+ _cleanup_free_ char *input = strdup(test->input);
+ __u32 values[COMMA_SEP_ARRAY_MAX_VALUES] = {};
+ int ret = argconfig_parse_comma_sep_array_u32(
+ input, values, COMMA_SEP_ARRAY_MAX_VALUES);
+ int i;
+
+ if (ret != test->ret) {
+ printf("ERROR: input '%s' return value %d != %d\n",
+ test->input, ret, test->ret);
+ test_rc = 1;
+ return;
+ }
+
+ for (i = 0; i < ret; i++) {
+ if (values[i] != test->values[i]) {
+ printf("ERROR: input '%s' values[%d] = %u != %u\n",
+ test->input, i, values[i], test->values[i]);
+ test_rc = 1;
+ return;
+ }
+ }
+}
+
int main(void)
{
unsigned int i;
for (i = 0; i < ARRAY_SIZE(toval_tests); i++)
toval_test(&toval_tests[i]);
+ for (i = 0; i < ARRAY_SIZE(comma_sep_array_tests); i++)
+ comma_sep_array_test(&comma_sep_array_tests[i]);
+
if (f)
fclose(f);