1 // SPDX-License-Identifier: GPL-2.0+
5 * Portions of these tests were inspired by glibc's posix/bug-getopt1.c and
6 * posix/tst-getopt-cancel.c
11 #include <test/test.h>
14 static int do_test_getopt(struct unit_test_state *uts, int line,
15 struct getopt_state *gs, const char *optstring,
16 int args, char *argv[], int expected_count,
21 getopt_init_state(gs);
22 for (int i = 0; i < expected_count; i++) {
23 opt = getopt_silent(gs, args, argv, optstring);
24 if (expected[i] != opt) {
26 * Fudge the line number so we can tell which test
29 ut_failf(uts, __FILE__, line, __func__,
30 "expected[i] == getopt()",
31 "Expected '%c' (%d) with i=%d, got '%c' (%d)",
32 expected[i], expected[i], i, opt, opt);
33 return CMD_RET_FAILURE;
37 opt = getopt_silent(gs, args, argv, optstring);
39 ut_failf(uts, __FILE__, line, __func__,
41 "Expected -1, got '%c' (%d)", opt, opt);
42 return CMD_RET_FAILURE;
48 #define test_getopt(optstring, argv, expected) do { \
49 int ret = do_test_getopt(uts, __LINE__, &gs, optstring, \
50 ARRAY_SIZE(argv) - 1, argv, \
51 ARRAY_SIZE(expected), expected); \
56 static int lib_test_getopt(struct unit_test_state *uts)
58 struct getopt_state gs;
62 ((char *[]){ "program", "-cb", "x", "-a", "foo", 0 }),
63 ((int []){ 'c', 'b', 'a' }));
64 ut_asserteq(4, gs.index);
66 /* Make sure we pick up the optional argument */
68 ((char *[]){ "program", "-cbx", "-a", "foo", 0 }),
69 ((int []){ 'c', 'b', 'a' }));
70 ut_asserteq(4, gs.index);
72 /* Test required arguments */
73 test_getopt("a:b", ((char *[]){ "program", "-a", 0 }),
75 ut_asserteq('a', gs.opt);
76 test_getopt("a:b", ((char *[]){ "program", "-b", "-a", 0 }),
77 ((int []){ 'b', ':' }));
78 ut_asserteq('a', gs.opt);
80 /* Test invalid arguments */
81 test_getopt("ab:c", ((char *[]){ "program", "-d", 0 }),
83 ut_asserteq('d', gs.opt);
87 ((char *[]){ "program", "-a", 0 }),
89 ut_asserteq(2, gs.index);
90 ut_assertnull(gs.arg);
93 ((char *[]){ "program", "-afoo", 0 }),
95 ut_asserteq(2, gs.index);
96 ut_assertnonnull(gs.arg);
97 ut_asserteq_str("foo", gs.arg);
100 ((char *[]){ "program", "-a", "foo", 0 }),
102 ut_asserteq(3, gs.index);
103 ut_assertnonnull(gs.arg);
104 ut_asserteq_str("foo", gs.arg);
106 test_getopt("a::b:c",
107 ((char *[]){ "program", "-bfoo", 0 }),
109 ut_asserteq(2, gs.index);
110 ut_assertnonnull(gs.arg);
111 ut_asserteq_str("foo", gs.arg);
113 test_getopt("a::b:c",
114 ((char *[]){ "program", "-b", "foo", 0 }),
116 ut_asserteq(3, gs.index);
117 ut_assertnonnull(gs.arg);
118 ut_asserteq_str("foo", gs.arg);
122 LIB_TEST(lib_test_getopt, 0);