From: Frank Lichtenheld Date: Wed, 8 Oct 2025 10:02:16 +0000 (+0200) Subject: test_options_parse: Add test for read_config_string X-Git-Tag: v2.7_beta3~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=775488b81c493382625c368a71f06d009f826a35;p=thirdparty%2Fopenvpn.git test_options_parse: Add test for read_config_string The test discovered the issue fixed by commit "buffer: Fix buf_parse eating input". Change-Id: Icb91d9c560b6f78f16571ac3052cc566d94afe99 Signed-off-by: Frank Lichtenheld Acked-by: Gert Doering Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1247 Message-Id: <20251008100222.4610-1-gert@greenie.muc.de> URL: https://sourceforge.net/p/openvpn/mailman/message/59243809/ Signed-off-by: Gert Doering --- diff --git a/tests/unit_tests/openvpn/test_options_parse.c b/tests/unit_tests/openvpn/test_options_parse.c index 9472c780b..e552dd70c 100644 --- a/tests/unit_tests/openvpn/test_options_parse.c +++ b/tests/unit_tests/openvpn/test_options_parse.c @@ -43,6 +43,9 @@ __wrap_add_option(struct options *options, char *p[], bool is_inline, const char const unsigned int permission_mask, unsigned int *option_types_found, struct env_set *es) { + function_called(); + check_expected(p); + check_expected(is_inline); } void @@ -185,11 +188,117 @@ test_parse_line(void **state) gc_free(&gc); } +static void +read_single_config(struct options *options, const char *config) +{ + unsigned int option_types_found = 0; + struct env_set es; + CLEAR(es); + read_config_string("test_options_parse", options, config, M_INFO, OPT_P_DEFAULT, + &option_types_found, &es); +} + +union tokens_parameter +{ + uintmax_t as_int; + void *as_pointer; +}; + +static int +check_tokens(const uintmax_t value, const uintmax_t expected) +{ + union tokens_parameter temp; + temp.as_int = value; + const char **p = (const char **)temp.as_pointer; + temp.as_int = expected; + const char **expected_p = (const char **)temp.as_pointer; + for (int i = 0; i < MAX_PARMS; i++) + { + if (!p[i] && !expected_p[i]) + { + return true; + } + if ((p[i] && !expected_p[i]) + || (!p[i] && expected_p[i])) + { + fprintf(stderr, "diff at i=%d\n", i); + return false; + } + if (strcmp(p[i], expected_p[i])) + { + fprintf(stderr, "diff at i=%d, p=<%s> ep=<%s>\n", i, p[i], expected_p[i]); + return false; + } + } + fprintf(stderr, "fallthrough"); + return false; +} + +static void +test_read_config(void **state) +{ + struct options o; + CLEAR(o); /* NB: avoiding init_options to limit dependencies */ + gc_init(&o.gc); + gc_init(&o.dns_options.gc); + o.gc_owned = true; + + char *p_expect_someopt[MAX_PARMS]; + char *p_expect_otheropt[MAX_PARMS]; + char *p_expect_inlineopt[MAX_PARMS]; + CLEAR(p_expect_someopt); + CLEAR(p_expect_otheropt); + CLEAR(p_expect_inlineopt); + p_expect_someopt[0] = "someopt"; + p_expect_someopt[1] = "parm1"; + p_expect_someopt[2] = "parm2"; + p_expect_otheropt[0] = "otheropt"; + p_expect_otheropt[1] = "1"; + p_expect_otheropt[2] = "2"; + p_expect_inlineopt[0] = "inlineopt"; + p_expect_inlineopt[1] = "some text\nother text\n"; + + /* basic test */ + expect_function_call(__wrap_add_option); + expect_check(__wrap_add_option, p, check_tokens, p_expect_someopt); + expect_value(__wrap_add_option, is_inline, 0); + expect_function_call(__wrap_add_option); + expect_check(__wrap_add_option, p, check_tokens, p_expect_otheropt); + expect_value(__wrap_add_option, is_inline, 0); + read_single_config(&o, "someopt parm1 parm2\n otheropt 1 2"); + + /* -- gets stripped */ + expect_function_call(__wrap_add_option); + expect_check(__wrap_add_option, p, check_tokens, p_expect_someopt); + expect_value(__wrap_add_option, is_inline, 0); + expect_function_call(__wrap_add_option); + expect_check(__wrap_add_option, p, check_tokens, p_expect_otheropt); + expect_value(__wrap_add_option, is_inline, 0); + read_single_config(&o, "someopt parm1 parm2\n\t--otheropt 1 2"); + + /* inline options */ + expect_function_call(__wrap_add_option); + expect_check(__wrap_add_option, p, check_tokens, p_expect_inlineopt); + expect_value(__wrap_add_option, is_inline, 1); + read_single_config(&o, "\nsome text\nother text\n"); + + p_expect_inlineopt[0] = "inlineopt"; + p_expect_inlineopt[1] = A_TIMES_256 A_TIMES_256 A_TIMES_256 A_TIMES_256 A_TIMES_256 "\n"; + expect_function_call(__wrap_add_option); + expect_check(__wrap_add_option, p, check_tokens, p_expect_inlineopt); + expect_value(__wrap_add_option, is_inline, 1); + read_single_config(&o, "\n" A_TIMES_256 A_TIMES_256 A_TIMES_256 A_TIMES_256 A_TIMES_256 "\n"); + + gc_free(&o.gc); + gc_free(&o.dns_options.gc); +} + int main(void) { const struct CMUnitTest tests[] = { cmocka_unit_test(test_parse_line), + cmocka_unit_test(test_read_config), }; return cmocka_run_group_tests_name("options_parse", tests, NULL, NULL);